cli: Hides the filler accounts args (#34113)

This commit is contained in:
Brooks 2023-11-16 12:58:52 -05:00 committed by GitHub
parent b8b860fe88
commit b4c652ef6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View File

@ -1140,7 +1140,8 @@ fn main() {
.validator(is_parsable::<usize>)
.takes_value(true)
.default_value("0")
.help("How many accounts to add to stress the system. Accounts are ignored in operations related to correctness.");
.help("How many accounts to add to stress the system. Accounts are ignored in operations related to correctness.")
.hidden(hidden_unless_forced());
let accounts_filler_size = Arg::with_name("accounts_filler_size")
.long("accounts-filler-size")
.value_name("BYTES")
@ -1148,7 +1149,8 @@ fn main() {
.takes_value(true)
.default_value("0")
.requires("accounts_filler_count")
.help("Size per filler account in bytes.");
.help("Size per filler account in bytes.")
.hidden(hidden_unless_forced());
let account_paths_arg = Arg::with_name("account_paths")
.long("accounts")
.value_name("PATHS")

View File

@ -1285,7 +1285,8 @@ pub fn app<'a>(version: &'a str, default_args: &'a DefaultArgs) -> App<'a, 'a> {
.validator(is_parsable::<usize>)
.takes_value(true)
.default_value(&default_args.accounts_filler_count)
.help("How many accounts to add to stress the system. Accounts are ignored in operations related to correctness."))
.help("How many accounts to add to stress the system. Accounts are ignored in operations related to correctness.")
.hidden(hidden_unless_forced()))
.arg(Arg::with_name("accounts_filler_size")
.long("accounts-filler-size")
.value_name("BYTES")
@ -1293,7 +1294,8 @@ pub fn app<'a>(version: &'a str, default_args: &'a DefaultArgs) -> App<'a, 'a> {
.takes_value(true)
.default_value(&default_args.accounts_filler_size)
.requires("accounts_filler_count")
.help("Size per filler account in bytes."))
.help("Size per filler account in bytes.")
.hidden(hidden_unless_forced()))
.arg(
Arg::with_name("accounts_db_test_hash_calculation")
.long("accounts-db-test-hash-calculation")