Skip to content

Commit

Permalink
Merge #2828
Browse files Browse the repository at this point in the history
2828: Fix the cli flag name --utxo-cost-per-word r=dcoutts a=dcoutts

It was previously accidentally the same as the old flag --min-utxo-value

Co-authored-by: Duncan Coutts <duncan@well-typed.com>
  • Loading branch information
iohk-bors[bot] and dcoutts committed Jun 15, 2021
2 parents 3d29a0c + c2e333e commit ad185dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cardano-cli/src/Cardano/CLI/Shelley/Parsers.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2530,7 +2530,7 @@ pExtraEntropy =
pUTxOCostPerWord :: Parser Lovelace
pUTxOCostPerWord =
Opt.option (readerFromParsecParser parseLovelace)
( Opt.long "min-utxo-value"
( Opt.long "utxo-cost-per-word"
<> Opt.metavar "LOVELACE"
<> Opt.help "Cost in lovelace per unit of UTxO storage (from Alonzo era)."
)
Expand Down

0 comments on commit ad185dc

Please sign in to comment.