move --accounts-db-verify-refcounts under verify (#27651)

This commit is contained in:
Jeff Washington (jwash) 2022-09-08 07:59:24 -07:00 committed by GitHub
parent cc58968b76
commit 518e16744d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2696,6 +2696,8 @@ fn main() {
filler_accounts_config,
skip_rewrites: arg_matches.is_present("accounts_db_skip_rewrites"),
ancient_append_vecs: arg_matches.is_present("accounts_db_ancient_append_vecs"),
exhaustively_verify_refcounts: arg_matches
.is_present("accounts_db_verify_refcounts"),
skip_initial_hash_calc: arg_matches
.is_present("accounts_db_skip_initial_hash_calculation"),
..AccountsDbConfig::default()
@ -2954,8 +2956,6 @@ fn main() {
ancient_append_vecs: arg_matches.is_present("accounts_db_ancient_append_vecs"),
skip_initial_hash_calc: arg_matches
.is_present("accounts_db_skip_initial_hash_calculation"),
exhaustively_verify_refcounts: arg_matches
.is_present("accounts_db_verify_refcounts"),
..AccountsDbConfig::default()
});