diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Commands/Query.hs b/cardano-cli/src/Cardano/CLI/EraBased/Commands/Query.hs index cb3335ad54..ade3f69087 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Commands/Query.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Commands/Query.hs @@ -139,7 +139,7 @@ data QueryStakeSnapshotCmdArgs = QueryStakeSnapshotCmdArgs { nodeSocketPath :: !SocketPath , consensusModeParams :: !ConsensusModeParams , networkId :: !NetworkId - , allOrOnlyPoolIds :: !(AllOrOnly [Hash StakePoolKey]) + , allOrOnlyPoolIds :: !(AllOrOnly (Hash StakePoolKey)) , mOutFile :: !(Maybe (File () Out)) } deriving (Generic, Show) @@ -155,7 +155,7 @@ data QueryPoolStateCmdArgs = QueryPoolStateCmdArgs { nodeSocketPath :: !SocketPath , consensusModeParams :: !ConsensusModeParams , networkId :: !NetworkId - , allOrOnlyPoolIds :: !(AllOrOnly [Hash StakePoolKey]) + , allOrOnlyPoolIds :: !(AllOrOnly (Hash StakePoolKey)) } deriving (Generic, Show) data QueryTxMempoolCmdArgs = QueryTxMempoolCmdArgs diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs index f67dc00ded..258b0069dc 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/Common.hs @@ -2294,10 +2294,8 @@ pStakePoolVerificationKeyHash prefix = Opt.option (pBech32KeyHash AsStakePoolKey <|> pHexHash AsStakePoolKey) $ mconcat [ Opt.long $ prefixFlag prefix "stake-pool-id" , Opt.metavar "STAKE_POOL_ID" - , Opt.help $ mconcat - [ "Stake pool ID/verification key hash (either Bech32-encoded or hex-encoded). " - , "Zero or more occurences of this option is allowed." - ] + , Opt.help + "Stake pool ID/verification key hash (either Bech32-encoded or hex-encoded)." ] pVrfVerificationKeyFile :: Parser (VerificationKeyFile In) diff --git a/cardano-cli/src/Cardano/CLI/EraBased/Options/Query.hs b/cardano-cli/src/Cardano/CLI/EraBased/Options/Query.hs index a049fa87ff..8b9b1424f7 100644 --- a/cardano-cli/src/Cardano/CLI/EraBased/Options/Query.hs +++ b/cardano-cli/src/Cardano/CLI/EraBased/Options/Query.hs @@ -189,15 +189,15 @@ pQueryProtocolStateCmd envCli = <*> pNetworkId envCli <*> pMaybeOutputFile -pAllStakePoolsOrOnly :: Parser (AllOrOnly [Hash StakePoolKey]) -pAllStakePoolsOrOnly = pAll <|> pOnly - where pAll :: Parser (AllOrOnly [Hash StakePoolKey]) +pAllStakePoolsOrSome :: Parser (AllOrOnly (Hash StakePoolKey)) +pAllStakePoolsOrSome = pAll <|> pOnly + where pAll :: Parser (AllOrOnly (Hash StakePoolKey)) pAll = Opt.flag' All $ mconcat [ Opt.long "all-stake-pools" , Opt.help "Query for all stake pools" ] - pOnly :: Parser (AllOrOnly [Hash StakePoolKey]) - pOnly = Only <$> many (pStakePoolVerificationKeyHash Nothing) + pOnly :: Parser (AllOrOnly (Hash StakePoolKey)) + pOnly = Only <$> some (pStakePoolVerificationKeyHash Nothing) pQueryStakeSnapshotCmd :: EnvCli -> Parser (QueryCmds era) pQueryStakeSnapshotCmd envCli = @@ -206,7 +206,7 @@ pQueryStakeSnapshotCmd envCli = <$> pSocketPath envCli <*> pConsensusModeParams <*> pNetworkId envCli - <*> pAllStakePoolsOrOnly + <*> pAllStakePoolsOrSome <*> pMaybeOutputFile pQueryPoolStateCmd :: EnvCli -> Parser (QueryCmds era) @@ -216,7 +216,7 @@ pQueryPoolStateCmd envCli = <$> pSocketPath envCli <*> pConsensusModeParams <*> pNetworkId envCli - <*> pAllStakePoolsOrOnly + <*> pAllStakePoolsOrSome pQueryTxMempoolCmd :: EnvCli -> Parser (QueryCmds era) pQueryTxMempoolCmd envCli = diff --git a/cardano-cli/src/Cardano/CLI/Legacy/Commands/Query.hs b/cardano-cli/src/Cardano/CLI/Legacy/Commands/Query.hs index 2e26b72356..3cfd51c28f 100644 --- a/cardano-cli/src/Cardano/CLI/Legacy/Commands/Query.hs +++ b/cardano-cli/src/Cardano/CLI/Legacy/Commands/Query.hs @@ -129,7 +129,7 @@ data LegacyQueryStakeSnapshotCmdArgs = LegacyQueryStakeSnapshotCmdArgs { nodeSocketPath :: !SocketPath , consensusModeParams :: !ConsensusModeParams , networkId :: !NetworkId - , allOrOnlyPoolIds :: !(AllOrOnly [Hash StakePoolKey]) + , allOrOnlyPoolIds :: !(AllOrOnly (Hash StakePoolKey)) , mOutFile :: !(Maybe (File () Out)) } deriving (Generic, Show) @@ -145,7 +145,7 @@ data LegacyQueryPoolStateCmdArgs = LegacyQueryPoolStateCmdArgs { nodeSocketPath :: !SocketPath , consensusModeParams :: !ConsensusModeParams , networkId :: !NetworkId - , allOrOnlyPoolIds :: !(AllOrOnly [Hash StakePoolKey]) + , allOrOnlyPoolIds :: !(AllOrOnly (Hash StakePoolKey)) } deriving (Generic, Show) data LegacyQueryTxMempoolCmdArgs = LegacyQueryTxMempoolCmdArgs diff --git a/cardano-cli/src/Cardano/CLI/Legacy/Options.hs b/cardano-cli/src/Cardano/CLI/Legacy/Options.hs index 13399e3809..866c9a9268 100644 --- a/cardano-cli/src/Cardano/CLI/Legacy/Options.hs +++ b/cardano-cli/src/Cardano/CLI/Legacy/Options.hs @@ -696,15 +696,15 @@ pQueryCmds envCli = <*> pNetworkId envCli <*> pMaybeOutputFile - pAllStakePoolsOrOnly :: Parser (AllOrOnly [Hash StakePoolKey]) + pAllStakePoolsOrOnly :: Parser (AllOrOnly (Hash StakePoolKey)) pAllStakePoolsOrOnly = pAll <|> pOnly - where pAll :: Parser (AllOrOnly [Hash StakePoolKey]) + where pAll :: Parser (AllOrOnly (Hash StakePoolKey)) pAll = Opt.flag' All $ mconcat [ Opt.long "all-stake-pools" , Opt.help "Query for all stake pools" ] - pOnly :: Parser (AllOrOnly [Hash StakePoolKey]) - pOnly = Only <$> many (pStakePoolVerificationKeyHash Nothing) + pOnly :: Parser (AllOrOnly (Hash StakePoolKey)) + pOnly = Only <$> some (pStakePoolVerificationKeyHash Nothing) pQueryStakeSnapshot :: Parser LegacyQueryCmds pQueryStakeSnapshot = diff --git a/cardano-cli/src/Cardano/CLI/Types/Common.hs b/cardano-cli/src/Cardano/CLI/Types/Common.hs index ef2febeea7..dc836be250 100644 --- a/cardano-cli/src/Cardano/CLI/Types/Common.hs +++ b/cardano-cli/src/Cardano/CLI/Types/Common.hs @@ -291,7 +291,7 @@ data KeyOutputFormat | KeyOutputFormatBech32 deriving (Eq, Show) -data AllOrOnly a = All | Only a deriving (Eq, Show) +data AllOrOnly a = All | Only [a] deriving (Eq, Show) -- | This data structure is used to allow nicely formatted output in the query pool-params command. -- params are the current pool parameter settings, futureparams are new parameters, retiringEpoch is the diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help.cli index c0ff9c4344..06c947d2b1 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help.cli @@ -539,10 +539,9 @@ Usage: cardano-cli shelley query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -554,9 +553,9 @@ Usage: cardano-cli shelley query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -597,9 +596,9 @@ Usage: cardano-cli shelley query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -1698,10 +1697,9 @@ Usage: cardano-cli allegra query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -1713,9 +1711,9 @@ Usage: cardano-cli allegra query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -1756,9 +1754,9 @@ Usage: cardano-cli allegra query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -2855,9 +2853,9 @@ Usage: cardano-cli mary query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -2869,9 +2867,9 @@ Usage: cardano-cli mary query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -2910,9 +2908,9 @@ Usage: cardano-cli mary query pool-state --socket-path SOCKET_PATH [--cardano-mode [--epoch-slots SLOTS]] (--mainnet | --testnet-magic NATURAL) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -4002,10 +4000,9 @@ Usage: cardano-cli alonzo query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -4017,9 +4014,9 @@ Usage: cardano-cli alonzo query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -4060,9 +4057,9 @@ Usage: cardano-cli alonzo query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -5186,10 +5183,9 @@ Usage: cardano-cli babbage query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -5201,9 +5197,9 @@ Usage: cardano-cli babbage query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -5244,9 +5240,9 @@ Usage: cardano-cli babbage query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -6579,10 +6575,9 @@ Usage: cardano-cli conway query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -6594,9 +6589,9 @@ Usage: cardano-cli conway query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -6637,9 +6632,9 @@ Usage: cardano-cli conway query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -7880,10 +7875,9 @@ Usage: cardano-cli latest query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -7895,9 +7889,9 @@ Usage: cardano-cli latest query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -7938,9 +7932,9 @@ Usage: cardano-cli latest query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -8894,10 +8888,9 @@ Usage: cardano-cli legacy query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -8909,9 +8902,9 @@ Usage: cardano-cli legacy query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -8952,9 +8945,9 @@ Usage: cardano-cli legacy query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -10124,9 +10117,9 @@ Usage: cardano-cli query protocol-state --socket-path SOCKET_PATH Usage: cardano-cli query stake-snapshot --socket-path SOCKET_PATH [--cardano-mode [--epoch-slots SLOTS]] (--mainnet | --testnet-magic NATURAL) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -10135,9 +10128,9 @@ Usage: cardano-cli query stake-snapshot --socket-path SOCKET_PATH Usage: cardano-cli query pool-params --socket-path SOCKET_PATH [--cardano-mode [--epoch-slots SLOTS]] (--mainnet | --testnet-magic NATURAL) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -10173,9 +10166,9 @@ Usage: cardano-cli query kes-period-info --socket-path SOCKET_PATH Usage: cardano-cli query pool-state --socket-path SOCKET_PATH [--cardano-mode [--epoch-slots SLOTS]] (--mainnet | --testnet-magic NATURAL) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_leadership-schedule.cli index 344d84a10f..324e7073e4 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_leadership-schedule.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_leadership-schedule.cli @@ -36,8 +36,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --vrf-signing-key-file FILE Input filepath of the VRF signing key. --current Get the leadership schedule for the current epoch. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_pool-params.cli index 37b6aaf42c..3cb69397a3 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_pool-params.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_pool-params.cli @@ -4,9 +4,9 @@ Usage: cardano-cli allegra query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -29,6 +29,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_pool-state.cli index be066a0b27..d20a2f1ba5 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_pool-state.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_pool-state.cli @@ -4,9 +4,9 @@ Usage: cardano-cli allegra query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -27,6 +27,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_stake-snapshot.cli index 916debe487..9c091a66d4 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_stake-snapshot.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_query_stake-snapshot.cli @@ -4,10 +4,9 @@ Usage: cardano-cli allegra query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -30,7 +29,6 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE Optional output file. Default is to write to stdout. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_stake-address_stake-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_stake-address_stake-delegation-certificate.cli index 0a64f0804b..77bcc3a7bb 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_stake-address_stake-delegation-certificate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/allegra_stake-address_stake-delegation-certificate.cli @@ -26,7 +26,6 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE The output file. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_leadership-schedule.cli index e232448c16..be445de961 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_leadership-schedule.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_leadership-schedule.cli @@ -36,8 +36,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --vrf-signing-key-file FILE Input filepath of the VRF signing key. --current Get the leadership schedule for the current epoch. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_pool-params.cli index a77a0bd3ce..e0008bab89 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_pool-params.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_pool-params.cli @@ -4,9 +4,9 @@ Usage: cardano-cli alonzo query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -29,6 +29,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_pool-state.cli index 9dcc53d0b8..1191842dee 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_pool-state.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_pool-state.cli @@ -4,9 +4,9 @@ Usage: cardano-cli alonzo query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -27,6 +27,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_stake-snapshot.cli index 23a75e2c16..27a93422cc 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_stake-snapshot.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_query_stake-snapshot.cli @@ -4,10 +4,9 @@ Usage: cardano-cli alonzo query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -30,7 +29,6 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE Optional output file. Default is to write to stdout. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_stake-address_stake-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_stake-address_stake-delegation-certificate.cli index 5693c8177a..431a172a92 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_stake-address_stake-delegation-certificate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/alonzo_stake-address_stake-delegation-certificate.cli @@ -26,7 +26,6 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE The output file. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_leadership-schedule.cli index 1185005b00..b3aa278932 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_leadership-schedule.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_leadership-schedule.cli @@ -36,8 +36,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --vrf-signing-key-file FILE Input filepath of the VRF signing key. --current Get the leadership schedule for the current epoch. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_pool-params.cli index 9361a0086c..3f0ee3e848 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_pool-params.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_pool-params.cli @@ -4,9 +4,9 @@ Usage: cardano-cli babbage query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -29,6 +29,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_pool-state.cli index a2edf8db6e..18b9e408e9 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_pool-state.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_pool-state.cli @@ -4,9 +4,9 @@ Usage: cardano-cli babbage query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -27,6 +27,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_stake-snapshot.cli index a888cab5b7..5dd5fc1068 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_stake-snapshot.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_query_stake-snapshot.cli @@ -4,10 +4,9 @@ Usage: cardano-cli babbage query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -30,7 +29,6 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE Optional output file. Default is to write to stdout. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_stake-address_stake-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_stake-address_stake-delegation-certificate.cli index 168e1c5126..fa992a2b23 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_stake-address_stake-delegation-certificate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/babbage_stake-address_stake-delegation-certificate.cli @@ -26,7 +26,6 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE The output file. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_governance_vote_create.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_governance_vote_create.cli index 29dc516719..cb61ab3b03 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_governance_vote_create.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_governance_vote_create.cli @@ -35,8 +35,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --cc-hot-verification-key STRING Constitutional Committee hot key (hex-encoded). --cc-hot-verification-key-file FILE diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_leadership-schedule.cli index e1f822ff29..fc956363bd 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_leadership-schedule.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_leadership-schedule.cli @@ -36,8 +36,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --vrf-signing-key-file FILE Input filepath of the VRF signing key. --current Get the leadership schedule for the current epoch. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_pool-params.cli index c0485733d9..abbd2e1db9 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_pool-params.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_pool-params.cli @@ -4,9 +4,9 @@ Usage: cardano-cli conway query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -29,6 +29,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_pool-state.cli index 9454c81ab5..627d291e0a 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_pool-state.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_pool-state.cli @@ -4,9 +4,9 @@ Usage: cardano-cli conway query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -27,6 +27,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_stake-snapshot.cli index 8dd3866fe2..fc9bf2ee5d 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_stake-snapshot.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_query_stake-snapshot.cli @@ -4,10 +4,9 @@ Usage: cardano-cli conway query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -30,7 +29,6 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE Optional output file. Default is to write to stdout. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_stake-address_stake-and-vote-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_stake-address_stake-and-vote-delegation-certificate.cli index d3de7b566d..6b06a66567 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_stake-address_stake-and-vote-delegation-certificate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_stake-address_stake-and-vote-delegation-certificate.cli @@ -33,8 +33,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --drep-script-hash HASH DRep script hash (hex-encoded). --drep-verification-key STRING DRep verification key (Bech32 or hex-encoded). diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_stake-address_stake-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_stake-address_stake-delegation-certificate.cli index a566b8691d..5a9e45ae12 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_stake-address_stake-delegation-certificate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/conway_stake-address_stake-delegation-certificate.cli @@ -26,7 +26,6 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE The output file. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_leadership-schedule.cli index eeb0cc64c6..5d97b4256e 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_leadership-schedule.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_leadership-schedule.cli @@ -36,8 +36,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --vrf-signing-key-file FILE Input filepath of the VRF signing key. --current Get the leadership schedule for the current epoch. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_pool-params.cli index cf91a3addb..724fce8818 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_pool-params.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_pool-params.cli @@ -4,9 +4,9 @@ Usage: cardano-cli latest query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -29,6 +29,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_pool-state.cli index ee44a3e75b..5f35a515e8 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_pool-state.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_pool-state.cli @@ -4,9 +4,9 @@ Usage: cardano-cli latest query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -27,6 +27,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_stake-snapshot.cli index 0b9c342ade..7c8a9b14fe 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_stake-snapshot.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_query_stake-snapshot.cli @@ -4,10 +4,9 @@ Usage: cardano-cli latest query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -30,7 +29,6 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE Optional output file. Default is to write to stdout. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_stake-address_stake-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_stake-address_stake-delegation-certificate.cli index 49b37496f3..ae37705743 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_stake-address_stake-delegation-certificate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/latest_stake-address_stake-delegation-certificate.cli @@ -26,7 +26,6 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE The output file. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_constitution-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_constitution-hash.cli deleted file mode 100644 index 70251965e6..0000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_constitution-hash.cli +++ /dev/null @@ -1,26 +0,0 @@ -Usage: cardano-cli legacy query constitution-hash --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - [--out-file FILE] - - Get the constitution hash - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILE Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_leadership-schedule.cli index 19fc04e282..c2aa5dde3f 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_leadership-schedule.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_leadership-schedule.cli @@ -36,8 +36,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --vrf-signing-key-file FILE Input filepath of the VRF signing key. --current Get the leadership schedule for the current epoch. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-params.cli index 644c90f5d0..7eb326ffbd 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-params.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-params.cli @@ -4,9 +4,9 @@ Usage: cardano-cli legacy query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -29,6 +29,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-state.cli index e519bfb47b..c382236bd5 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-state.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_pool-state.cli @@ -4,9 +4,9 @@ Usage: cardano-cli legacy query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -27,6 +27,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-snapshot.cli index 923a3efea4..756142e286 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-snapshot.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_query_stake-snapshot.cli @@ -4,10 +4,9 @@ Usage: cardano-cli legacy query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -30,7 +29,6 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE Optional output file. Default is to write to stdout. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_delegation-certificate.cli index d4cd06b695..e8b0500f5c 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_delegation-certificate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/legacy_stake-address_delegation-certificate.cli @@ -38,7 +38,6 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE The output file. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_leadership-schedule.cli index e47c5ee1c0..60f17f044b 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_leadership-schedule.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_leadership-schedule.cli @@ -36,8 +36,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --vrf-signing-key-file FILE Input filepath of the VRF signing key. --current Get the leadership schedule for the current epoch. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_pool-params.cli index e49616c292..b8e3744e24 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_pool-params.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_pool-params.cli @@ -4,9 +4,9 @@ Usage: cardano-cli mary query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -29,6 +29,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_pool-state.cli index 48242070cd..a095e5baa2 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_pool-state.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_pool-state.cli @@ -2,9 +2,9 @@ Usage: cardano-cli mary query pool-state --socket-path SOCKET_PATH [--cardano-mode [--epoch-slots SLOTS]] (--mainnet | --testnet-magic NATURAL) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -25,6 +25,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_stake-snapshot.cli index 56650ae63c..f1c7103727 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_stake-snapshot.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_query_stake-snapshot.cli @@ -4,9 +4,9 @@ Usage: cardano-cli mary query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -29,7 +29,6 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE Optional output file. Default is to write to stdout. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_stake-address_stake-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_stake-address_stake-delegation-certificate.cli index d0e635596a..24077fc465 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_stake-address_stake-delegation-certificate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/mary_stake-address_stake-delegation-certificate.cli @@ -26,7 +26,6 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE The output file. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_constitution-hash.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_constitution-hash.cli deleted file mode 100644 index 40506e7245..0000000000 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_constitution-hash.cli +++ /dev/null @@ -1,26 +0,0 @@ -Usage: cardano-cli query constitution-hash --socket-path SOCKET_PATH - [--cardano-mode - [--epoch-slots SLOTS]] - ( --mainnet - | --testnet-magic NATURAL - ) - [--out-file FILE] - - Get the constitution hash - -Available options: - --socket-path SOCKET_PATH - Path to the node socket. This overrides the - CARDANO_NODE_SOCKET_PATH environment variable. The - argument is optional if CARDANO_NODE_SOCKET_PATH is - defined and mandatory otherwise. - --cardano-mode For talking to a node running in full Cardano mode - (default). - --epoch-slots SLOTS The number of slots per epoch for the Byron era. - (default: 21600) - --mainnet Use the mainnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --testnet-magic NATURAL Specify a testnet magic id. This overrides the - CARDANO_NODE_NETWORK_ID environment variable - --out-file FILE Optional output file. Default is to write to stdout. - -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_leadership-schedule.cli index b7bbe6a23c..2b9b6fd870 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_leadership-schedule.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_leadership-schedule.cli @@ -36,8 +36,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --vrf-signing-key-file FILE Input filepath of the VRF signing key. --current Get the leadership schedule for the current epoch. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-params.cli index ba376d44ab..39de86e416 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-params.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-params.cli @@ -1,9 +1,9 @@ Usage: cardano-cli query pool-params --socket-path SOCKET_PATH [--cardano-mode [--epoch-slots SLOTS]] (--mainnet | --testnet-magic NATURAL) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -26,6 +26,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-state.cli index 621bfbfcf6..0fb3f65245 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-state.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_pool-state.cli @@ -1,9 +1,9 @@ Usage: cardano-cli query pool-state --socket-path SOCKET_PATH [--cardano-mode [--epoch-slots SLOTS]] (--mainnet | --testnet-magic NATURAL) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -24,6 +24,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-snapshot.cli index 6d5f50d6e6..7d42da620a 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-snapshot.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/query_stake-snapshot.cli @@ -1,9 +1,9 @@ Usage: cardano-cli query stake-snapshot --socket-path SOCKET_PATH [--cardano-mode [--epoch-slots SLOTS]] (--mainnet | --testnet-magic NATURAL) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -26,7 +26,6 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE Optional output file. Default is to write to stdout. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_leadership-schedule.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_leadership-schedule.cli index 8d29ccd048..265fc28198 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_leadership-schedule.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_leadership-schedule.cli @@ -36,8 +36,7 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --vrf-signing-key-file FILE Input filepath of the VRF signing key. --current Get the leadership schedule for the current epoch. diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_pool-params.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_pool-params.cli index 6c3db76343..f67564d43c 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_pool-params.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_pool-params.cli @@ -4,9 +4,9 @@ Usage: cardano-cli shelley query pool-params --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) DEPRECATED. Use query pool-state instead. Dump the pool parameters (Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced @@ -29,6 +29,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_pool-state.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_pool-state.cli index 8a42f980f8..a1abff2c4d 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_pool-state.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_pool-state.cli @@ -4,9 +4,9 @@ Usage: cardano-cli shelley query pool-state --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) Dump the pool state @@ -27,6 +27,5 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_stake-snapshot.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_stake-snapshot.cli index 5325825992..e9e1f86f8e 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_stake-snapshot.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_query_stake-snapshot.cli @@ -4,10 +4,9 @@ Usage: cardano-cli shelley query stake-snapshot --socket-path SOCKET_PATH ( --mainnet | --testnet-magic NATURAL ) - [ --all-stake-pools - | - [--stake-pool-id STAKE_POOL_ID] - ] + ( --all-stake-pools + | (--stake-pool-id STAKE_POOL_ID) + ) [--out-file FILE] Obtain the three stake snapshots for a pool, plus the total active stake @@ -30,7 +29,6 @@ Available options: --all-stake-pools Query for all stake pools --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE Optional output file. Default is to write to stdout. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_stake-address_stake-delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_stake-address_stake-delegation-certificate.cli index a4259f9e4d..adfa1c7363 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_stake-address_stake-delegation-certificate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/shelley_stake-address_stake-delegation-certificate.cli @@ -26,7 +26,6 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE The output file. -h,--help Show this help text diff --git a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_delegation-certificate.cli b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_delegation-certificate.cli index dff68f87bc..aba66f34d3 100644 --- a/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_delegation-certificate.cli +++ b/cardano-cli/test/cardano-cli-golden/files/golden/help/stake-address_delegation-certificate.cli @@ -38,7 +38,6 @@ Available options: Filepath of the stake pool verification key. --stake-pool-id STAKE_POOL_ID Stake pool ID/verification key hash (either - Bech32-encoded or hex-encoded). Zero or more - occurences of this option is allowed. + Bech32-encoded or hex-encoded). --out-file FILE The output file. -h,--help Show this help text