From 92a9a0e90f6bd1a51f76892144d1c36319259665 Mon Sep 17 00:00:00 2001 From: Brooks Date: Tue, 16 Jul 2024 14:32:20 -0400 Subject: [PATCH] Removes deprecated --incremental-snapshots cli arg (#2132) --- validator/src/cli.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/validator/src/cli.rs b/validator/src/cli.rs index 2a35116dbb5339..4cbdad1ba6002d 100644 --- a/validator/src/cli.rs +++ b/validator/src/cli.rs @@ -2056,16 +2056,6 @@ fn deprecated_arguments() -> Vec { set" ), ); - add_arg!(Arg::with_name("incremental_snapshots") - .long("incremental-snapshots") - .takes_value(false) - .conflicts_with("no_incremental_snapshots") - .help("Enable incremental snapshots") - .long_help( - "Enable incremental snapshots by setting this flag. When enabled, \ - --snapshot-interval-slots will set the incremental snapshot interval. To set the \ - full snapshot interval, use --full-snapshot-interval-slots.", - )); add_arg!(Arg::with_name("minimal_rpc_api") .long("minimal-rpc-api") .takes_value(false)