From 879370a0206c44a750f39eca42d0de64a610bf26 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Mon, 22 Feb 2021 12:38:37 -0800 Subject: [PATCH] Improve help for split-stake-account --- cli/src/stake.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/stake.rs b/cli/src/stake.rs index fdb734ba7b..94cf704931 100644 --- a/cli/src/stake.rs +++ b/cli/src/stake.rs @@ -268,7 +268,7 @@ impl StakeSubCommands for App<'_, '_> { .arg( Arg::with_name("split_stake_account") .index(2) - .value_name("ACCOUNT_KEYPAIR") + .value_name("SPLIT_STAKE_ACCOUNT") .takes_value(true) .required(true) .validator(is_valid_signer) @@ -288,7 +288,7 @@ impl StakeSubCommands for App<'_, '_> { .long("seed") .value_name("STRING") .takes_value(true) - .help("Seed for address generation; if specified, the resulting account will be at a derived address of the SPLIT STAKE ACCOUNT pubkey") + .help("Seed for address generation; if specified, the resulting account will be at a derived address of the SPLIT_STAKE_ACCOUNT pubkey") ) .arg(stake_authority_arg()) .offline_args()