diff --git a/ledger-tool/src/main.rs b/ledger-tool/src/main.rs index fa4e09ef420914..07a406db467d0e 100644 --- a/ledger-tool/src/main.rs +++ b/ledger-tool/src/main.rs @@ -1135,6 +1135,14 @@ fn main() { .value_name("PATHS") .takes_value(true) .help("Comma separated persistent accounts location"); +<<<<<<< HEAD +======= + let accounts_hash_cache_path_arg = Arg::with_name("accounts_hash_cache_path") + .long("accounts-hash-cache-path") + .value_name("PATH") + .takes_value(true) + .help("Use PATH as accounts hash cache location [default: /accounts_hash_cache]"); +>>>>>>> 1d39c3167d (Adds default info to cli arg for --accounts-hash-cache-path (#33331)) let accounts_index_path_arg = Arg::with_name("accounts_index_path") .long("accounts-index-path") .value_name("PATH") diff --git a/validator/src/cli.rs b/validator/src/cli.rs index 1b9266a49ea58a..3f8bd4fb29cc9c 100644 --- a/validator/src/cli.rs +++ b/validator/src/cli.rs @@ -289,7 +289,7 @@ pub fn app<'a>(version: &'a str, default_args: &'a DefaultArgs) -> App<'a, 'a> { .long("accounts-hash-cache-path") .value_name("PATH") .takes_value(true) - .help("Use PATH as accounts hash cache location"), + .help("Use PATH as accounts hash cache location [default: /accounts_hash_cache]"), ) .arg( Arg::with_name("snapshots")