Improve help for split-stake-account

This commit is contained in:
Michael Vines
2021-02-22 12:38:37 -08:00
parent d14374bc9f
commit 879370a020

View File

@ -268,7 +268,7 @@ impl StakeSubCommands for App<'_, '_> {
.arg( .arg(
Arg::with_name("split_stake_account") Arg::with_name("split_stake_account")
.index(2) .index(2)
.value_name("ACCOUNT_KEYPAIR") .value_name("SPLIT_STAKE_ACCOUNT")
.takes_value(true) .takes_value(true)
.required(true) .required(true)
.validator(is_valid_signer) .validator(is_valid_signer)
@ -288,7 +288,7 @@ impl StakeSubCommands for App<'_, '_> {
.long("seed") .long("seed")
.value_name("STRING") .value_name("STRING")
.takes_value(true) .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()) .arg(stake_authority_arg())
.offline_args() .offline_args()