Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Fix checks failure
Browse files Browse the repository at this point in the history
  • Loading branch information
willhickey committed Oct 29, 2023
1 parent 7e852dc commit 09b202e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions validator/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1865,12 +1865,10 @@ fn deprecated_arguments() -> Vec<DeprecatedArg> {
.help("Skip ledger verification at validator bootup."),
replaced_by: "skip-startup-ledger-verification",
);
add_arg!(
Arg::with_name("disable_accounts_disk_index")
.long("disable-accounts-disk-index")
.help("Disable the disk-based accounts index if it is enabled by default.")
.conflicts_with("accounts_index_memory_limit_mb")
)
add_arg!(Arg::with_name("disable_accounts_disk_index")
.long("disable-accounts-disk-index")
.help("Disable the disk-based accounts index if it is enabled by default.")
.conflicts_with("accounts_index_memory_limit_mb"));

res
}
Expand Down

0 comments on commit 09b202e

Please sign in to comment.