diff --git a/ledger-tool/src/main.rs b/ledger-tool/src/main.rs index 73bf4127eb..d6218fad69 100644 --- a/ledger-tool/src/main.rs +++ b/ledger-tool/src/main.rs @@ -604,7 +604,11 @@ fn main() { .long("accounts") .value_name("PATHS") .takes_value(true) - .help("Comma separated persistent accounts location"); + .help( + "Persistent accounts location. \ + May be specified multiple times. \ + [default: /accounts]", + ); let accounts_hash_cache_path_arg = Arg::with_name("accounts_hash_cache_path") .long("accounts-hash-cache-path") .value_name("PATH") diff --git a/validator/src/cli.rs b/validator/src/cli.rs index 6c16e09d1b..b3e1a885b3 100644 --- a/validator/src/cli.rs +++ b/validator/src/cli.rs @@ -276,7 +276,10 @@ pub fn app<'a>(version: &'a str, default_args: &'a DefaultArgs) -> App<'a, 'a> { .value_name("PATHS") .takes_value(true) .multiple(true) - .help("Comma separated persistent accounts location"), + .help("Comma separated persistent accounts location. \ + May be specified multiple times. \ + [default: /accounts]" + ), ) .arg( Arg::with_name("account_shrink_path")