Skip to content

Commit

Permalink
fix ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
buffalu committed Dec 4, 2023
1 parent 27b7181 commit afdbaf7
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 @@ -1922,10 +1922,6 @@ fn deprecated_arguments() -> Vec<DeprecatedArg> {
.help("Enables faster starting of validators by skipping startup clean and shrink."),
usage_warning: "Enabled by default",
);
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("block_engine_address")
.long("block-engine-address")
Expand All @@ -1942,6 +1938,10 @@ fn deprecated_arguments() -> Vec<DeprecatedArg> {
.help("Deprecated: Please use block_engine_url.")
.conflicts_with("block_engine_url"),
replaced_by: "block-engine-url");
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

0 comments on commit afdbaf7

Please sign in to comment.