Add --bpf-jit stub argument for v1.5 forward compatibility

This commit is contained in:
Michael Vines
2020-12-17 10:40:19 -08:00
parent 7424f7ba7f
commit 5490c47c68

View File

@ -1402,6 +1402,12 @@ pub fn main() {
"Mode to recovery the ledger db write ahead log."
),
)
.arg(
Arg::with_name("bpf_jit")
.long("bpf-jit")
.takes_value(false)
.hidden(true) // Don't document this argument. It's a stub for v1.5 forward compatibility
)
.get_matches();
let identity_keypair = Arc::new(keypair_of(&matches, "identity").unwrap_or_else(Keypair::new));