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

Commit

Permalink
Move disable_accounts_disk_index arg to alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
willhickey committed Oct 30, 2023
1 parent 09b202e commit 61f732a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions validator/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1781,6 +1781,10 @@ fn deprecated_arguments() -> Vec<DeprecatedArg> {
Ok(())
}
}));
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_quic_servers")
.long("disable-quic-servers")
Expand Down Expand Up @@ -1865,10 +1869,6 @@ 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"));

res
}
Expand Down

0 comments on commit 61f732a

Please sign in to comment.