Skip to content
This repository was archived by the owner on Jun 11, 2022. It is now read-only.

Commit c8b26dd

Browse files
committed
fix wrong clap identifier for UTXO's value in add-input command
fix #42
1 parent b00db11 commit c8b26dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ fn transaction_argument_txin_match<'a>(matches: &ArgMatches<'a>) -> Option<(card
883883
}
884884
fn transaction_argument_input_match<'a>(matches: &ArgMatches<'a>) -> Option<(cardano::tx::TxId, u32, Option<cardano::coin::Coin>)> {
885885
let (txid, index) = transaction_argument_txin_match(&matches)?;
886-
let coin = value_t!(matches, "UTXO_AMOUNT", cardano::coin::Coin).ok();
886+
let coin = value_t!(matches, "TRANSACTION_AMOUNT", cardano::coin::Coin).ok();
887887

888888
Some((txid, index, coin))
889889
}

0 commit comments

Comments
 (0)