Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix checks failure
  • Loading branch information
Will Hickey committed Oct 29, 2023
commit 09b202e7b314a0349a4419a1ec2fd4d5ebc7ff57
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