From c2e333e44d66842e767c3e44f88a8b9ccfc5e952 Mon Sep 17 00:00:00 2001 From: Duncan Coutts Date: Tue, 15 Jun 2021 13:59:24 +0100 Subject: [PATCH] Fix the cli flag name --utxo-cost-per-word It was previously accidentally the same as the old flag --min-utxo-value --- cardano-cli/src/Cardano/CLI/Shelley/Parsers.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cardano-cli/src/Cardano/CLI/Shelley/Parsers.hs b/cardano-cli/src/Cardano/CLI/Shelley/Parsers.hs index c94644a2092..cdf828799c4 100644 --- a/cardano-cli/src/Cardano/CLI/Shelley/Parsers.hs +++ b/cardano-cli/src/Cardano/CLI/Shelley/Parsers.hs @@ -2523,7 +2523,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)." )