File tree 2 files changed +3
-3
lines changed
cardano-cli/src/Cardano/CLI
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ txSpendGenesisUTxOByronPBFT gc nId sk (ByronAddress bAddr) outs = do
165
165
TxUpdateProposalNone
166
166
TxMintNone
167
167
TxScriptValidityNone
168
- case makeTransactionBody txBodyCont of
168
+ case createAndValidateTransactionBody txBodyCont of
169
169
Left err -> error $ " Error occurred while creating a Byron genesis based UTxO transaction: " <> show err
170
170
Right txBody -> let bWit = fromByronWitness sk nId txBody
171
171
in makeSignedTransaction [bWit] txBody
@@ -207,7 +207,7 @@ txSpendUTxOByronPBFT nId sk txIns outs = do
207
207
TxUpdateProposalNone
208
208
TxMintNone
209
209
TxScriptValidityNone
210
- case makeTransactionBody txBodyCont of
210
+ case createAndValidateTransactionBody txBodyCont of
211
211
Left err -> error $ " Error occurred while creating a Byron genesis based UTxO transaction: " <> show err
212
212
Right txBody -> let bWit = fromByronWitness sk nId txBody
213
213
in makeSignedTransaction [bWit] txBody
Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ runTxBuildRaw (AnyCardanoEra era)
403
403
404
404
txBody <-
405
405
firstExceptT ShelleyTxCmdTxBodyError . hoistEither $
406
- makeTransactionBody txBodyContent
406
+ createAndValidateTransactionBody txBodyContent
407
407
case outputFormat of
408
408
OutputCliSerialisation ->
409
409
firstExceptT ShelleyTxCmdWriteFileError . newExceptT $
You can’t perform that action at this time.
0 commit comments