diff --git a/validator/src/main.rs b/validator/src/main.rs index a01325f4c6..50d7ce5f3a 100644 --- a/validator/src/main.rs +++ b/validator/src/main.rs @@ -736,6 +736,14 @@ pub fn main() { .validator(hash_validator) .help("Require the genesis have this hash"), ) + .arg( + Arg::with_name("expected_bank_hash") + .long("expected-bank-hash") + .value_name("HASH") + .takes_value(true) + .validator(hash_validator) + .hidden(true) // This is a stub implementation for v1.2 command-line compatibility + ) .arg( Arg::with_name("expected_shred_version") .long("expected-shred-version")