diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/Genesis.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/Genesis.hs index d4fdc33fd1..e9eb7de45c 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/Genesis.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/Genesis.hs @@ -275,7 +275,9 @@ pGenesisCreateTestNetData envCli = Opt.optional $ fmap Lovelace $ Opt.option Opt.auto $ mconcat [ Opt.long "supply" , Opt.metavar "LOVELACE" - , Opt.help "The initial coin supply in Lovelace which will be evenly distributed across initial, non-delegating stake holders. Defaults to 1 million Ada (i.e. 10^12 Lovelace)." + , Opt.help $ unlines [ "The initial coin supply in Lovelace which will be evenly distributed across initial, non-delegating stake holders. Defaults to 1 million Ada (i.e. 10^12 Lovelace)." + , " The total supply is this amount plus the amount specified with --supply-delegated." + ] , Opt.value 1000000000000 ] pSupplyDelegated :: Parser (Maybe Lovelace) @@ -283,7 +285,9 @@ pGenesisCreateTestNetData envCli = Opt.optional $ fmap Lovelace $ Opt.option Opt.auto $ mconcat [ Opt.long "supply-delegated" , Opt.metavar "LOVELACE" - , Opt.help "The initial coin supply in Lovelace which will be evenly distributed across initial, delegating stake holders. Defaults to 1 million Ada (i.e. 10^12 Lovelace)." + , Opt.help $ unlines [ "The initial coin supply in Lovelace which will be evenly distributed across initial, delegating stake holders. Defaults to 1 million Ada (i.e. 10^12 Lovelace)." + , " The total supply is this amount plus the amount specified with --supply." + ] , Opt.value 1000000000000 ] pOutputDir = Opt.strOption $ mconcat @@ -374,7 +378,9 @@ pInitialSupplyNonDelegated = Opt.optional $ fmap Lovelace $ Opt.option Opt.auto $ mconcat [ Opt.long "supply" , Opt.metavar "LOVELACE" - , Opt.help "The initial coin supply in Lovelace which will be evenly distributed across initial, non-delegating stake holders." + , Opt.help $ unlines [ "The initial coin supply in Lovelace which will be evenly distributed across initial, non-delegating stake holders. Defaults to 1 million Ada (i.e. 10^12 Lovelace)." + , " The total supply is this amount plus the amount specified with --supply-delegated." + ] ] pInitialSupplyDelegated :: Parser Lovelace @@ -382,7 +388,9 @@ pInitialSupplyDelegated = fmap (Lovelace . fromMaybe 0) $ Opt.optional $ Opt.option Opt.auto $ mconcat [ Opt.long "supply-delegated" , Opt.metavar "LOVELACE" - , Opt.help "The initial coin supply in Lovelace which will be evenly distributed across initial, delegating stake holders." + , Opt.help $ unlines [ "The initial coin supply in Lovelace which will be evenly distributed across initial, delegating stake holders. Defaults to 1 million Ada (i.e. 10^12 Lovelace)." + , " The total supply is this amount plus the amount specified with --supply." + ] , Opt.value 0 ]