@@ -6,7 +6,6 @@ use std::{
66 collections:: HashSet ,
77 fmt:: { self , Formatter } ,
88 iter:: once,
9- num:: NonZeroU64 ,
109 path:: PathBuf ,
1110 time:: Duration ,
1211} ;
@@ -341,18 +340,6 @@ pub struct Options {
341340 #[ clap( long, env = "ESPRESSO_NODE_BOOTSTRAP_EPOCH_CATCHUP_TIMEOUT" , default_value = "30s" , value_parser = parse_duration) ]
342341 pub bootstrap_epoch_catchup_timeout : Duration ,
343342
344- /// Number of blocks between new-protocol garbage collection passes.
345- ///
346- /// Controls how often the new-protocol coordinator triggers garbage
347- /// collection of decided views/epochs across consensus state, VID,
348- /// vote collectors, and storage.
349- #[ clap(
350- long,
351- env = "ESPRESSO_NODE_NEW_PROTOCOL_CONSENSUS_GC_INTERVAL" ,
352- default_value = "100"
353- ) ]
354- pub new_protocol_consensus_gc_interval : NonZeroU64 ,
355-
356343 #[ clap( flatten) ]
357344 pub logging : logging:: Config ,
358345
@@ -691,7 +678,6 @@ pub struct PublicNodeConfig {
691678 pub catchup_base_timeout : Duration ,
692679 pub local_catchup_timeout : Duration ,
693680 pub bootstrap_epoch_catchup_timeout : Duration ,
694- pub new_protocol_consensus_gc_interval : NonZeroU64 ,
695681 pub catchup_backoff : BackoffParams ,
696682 pub proposal_fetcher : ProposalFetcherConfig ,
697683 pub libp2p : Libp2pTuning ,
@@ -1031,7 +1017,6 @@ impl PublicNodeConfig {
10311017 catchup_base_timeout : opt. catchup_base_timeout ,
10321018 local_catchup_timeout : opt. local_catchup_timeout ,
10331019 bootstrap_epoch_catchup_timeout : opt. bootstrap_epoch_catchup_timeout ,
1034- new_protocol_consensus_gc_interval : opt. new_protocol_consensus_gc_interval ,
10351020 catchup_backoff : opt. catchup_backoff ,
10361021 proposal_fetcher : opt. proposal_fetcher_config ,
10371022 libp2p : Libp2pTuning :: from ( opt) ,
0 commit comments