diff --git a/validator_client/src/beacon_node_fallback.rs b/validator_client/src/beacon_node_fallback.rs index f6acbf6637..c02264a6cb 100644 --- a/validator_client/src/beacon_node_fallback.rs +++ b/validator_client/src/beacon_node_fallback.rs @@ -45,8 +45,6 @@ const FUTURE_SLOT_TOLERANCE: Slot = Slot::new(1); // Configuration for the Beacon Node fallback. #[derive(Copy, Clone, Debug, Default, Serialize, Deserialize)] pub struct Config { - /// Disables publishing http api requests to all beacon nodes for select api calls. - pub disable_run_on_all: bool, pub sync_tolerances: BeaconNodeSyncDistanceTiers, } diff --git a/validator_client/src/config.rs b/validator_client/src/config.rs index 99eb771106..d8b912b4da 100644 --- a/validator_client/src/config.rs +++ b/validator_client/src/config.rs @@ -270,9 +270,6 @@ impl Config { /* * Beacon node fallback */ - - config.beacon_node_fallback.disable_run_on_all = cli_args.get_flag("disable-run-on-all"); - if let Some(sync_tolerance) = cli_args.get_one::("beacon-nodes-sync-tolerances") { config.beacon_node_fallback.sync_tolerances = BeaconNodeSyncDistanceTiers::from_str(sync_tolerance)?;