From 2e1989bb9b60d9b127ef8a372280ac19ee5ccd6b Mon Sep 17 00:00:00 2001 From: Trent Nelson Date: Thu, 17 Mar 2022 14:51:23 -0600 Subject: [PATCH] validator: adds `--no-incremental-snapshots` NOP arg for v1.10 forward compat --- validator/src/main.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/validator/src/main.rs b/validator/src/main.rs index ed02d87d09..5a969c4e43 100644 --- a/validator/src/main.rs +++ b/validator/src/main.rs @@ -885,6 +885,13 @@ pub fn main() { slots behind the highest snapshot available for \ download from other validators"), ) + .arg( + // NOP arg for forward compatibility with ISS on-by-default in v1.10 + Arg::with_name("no_incremental_snapshots") + .long("no-incremental-snapshots") + .hidden(true) + .conflicts_with("incremental_snapshots") + ) .arg( Arg::with_name("incremental_snapshots") .long("incremental-snapshots")