Skip to content

Commit

Permalink
fix: adding conway era to cli submit (#583)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kammerlo authored Nov 26, 2024
1 parent 061a4ec commit cecf9a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const configure = (
logger.debug(
`[submitTransaction] Invoking cardano-cli at ${cardanoCliPath} using ${networkMagic} networkMagic`
);
const commonParameters = ['transaction', 'submit', '--tx-file', file];
const commonParameters = ['conway', 'transaction', 'submit', '--tx-file', file];
const parameters = isMainnet
? commonParameters.concat('--mainnet')
: commonParameters.concat('--testnet-magic', networkMagic.toString());
Expand Down

0 comments on commit cecf9a0

Please sign in to comment.