Skip to content

Commit

Permalink
Removes deprecated --halt-on-known-validators-accounts-hash-mismatch …
Browse files Browse the repository at this point in the history
…cli arg (#2154)

(cherry picked from commit 4f228f4)

# Conflicts:
#	validator/src/cli.rs
  • Loading branch information
brooksprumo authored and mergify[bot] committed Jul 16, 2024
1 parent 42dad6a commit 8b04ac9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 0 additions & 3 deletions multinode-demo/validator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,6 @@ while [[ -n $1 ]]; do
elif [[ $1 = --known-validator ]]; then
args+=("$1" "$2")
shift 2
elif [[ $1 = --halt-on-known-validators-accounts-hash-mismatch ]]; then
args+=("$1")
shift
elif [[ $1 = --max-genesis-archive-unpacked-size ]]; then
args+=("$1" "$2")
shift 2
Expand Down
3 changes: 3 additions & 0 deletions validator/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2027,6 +2027,7 @@ fn deprecated_arguments() -> Vec<DeprecatedArg> {
.long("enable-quic-servers"),
usage_warning: "The quic server is now enabled by default.",
);
<<<<<<< HEAD
add_arg!(
Arg::with_name("halt_on_known_validators_accounts_hash_mismatch")
.alias("halt-on-trusted-validators-accounts-hash-mismatch")
Expand All @@ -2048,6 +2049,8 @@ fn deprecated_arguments() -> Vec<DeprecatedArg> {
--snapshot-interval-slots will set the incremental snapshot interval. To set the \
full snapshot interval, use --full-snapshot-interval-slots.",
));
=======
>>>>>>> 4f228f4c3c (Removes deprecated --halt-on-known-validators-accounts-hash-mismatch cli arg (#2154))
add_arg!(Arg::with_name("minimal_rpc_api")
.long("minimal-rpc-api")
.takes_value(false)
Expand Down

0 comments on commit 8b04ac9

Please sign in to comment.