From 9c76d4506d1850cf32f3b1899f3defbf153f11d4 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Mon, 27 Mar 2023 11:35:07 +1100 Subject: [PATCH] Clarify help message --- validator_manager/src/move_validators.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/validator_manager/src/move_validators.rs b/validator_manager/src/move_validators.rs index 54a6773fb1..91c011f31e 100644 --- a/validator_manager/src/move_validators.rs +++ b/validator_manager/src/move_validators.rs @@ -116,9 +116,9 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> { .long(VALIDATORS_FLAG) .value_name("STRING") .help( - "One or more validator public keys (as 0x-prefixed hex) to be moved from \ - the source to destination validator clients. Alternatively, use \"all\" to \ - move all the validators from the source validator client.", + "The validators to be moved. Either (a) a list of \ + 0x-prefixed validator pubkeys, (b) an integer count of \ + validators or (c) the word \"all\".", ) .required(true) .takes_value(true),