diff --git a/consensus/state_processing/src/genesis.rs b/consensus/state_processing/src/genesis.rs index 68309fec22..4450b99930 100644 --- a/consensus/state_processing/src/genesis.rs +++ b/consensus/state_processing/src/genesis.rs @@ -120,7 +120,8 @@ pub fn initialize_beacon_state_from_eth1( let post = upgrade_state_to_electra(&mut state, Epoch::new(0), Epoch::new(0), spec)?; state = post; - // TODO(electra): do we need to iterate over an empty pending_deposits list here and increase balance?! + // TODO(electra): do we need to iterate over an empty pending_deposits list here and increase balance? + // in accordance with `initialize_beacon_state_from_eth1` function from the spec // Remove intermediate Deneb fork from `state.fork`. state.fork_mut().previous_version = spec.electra_fork_version; diff --git a/consensus/state_processing/src/per_block_processing/process_operations.rs b/consensus/state_processing/src/per_block_processing/process_operations.rs index 50cf1b8151..81998906cf 100644 --- a/consensus/state_processing/src/per_block_processing/process_operations.rs +++ b/consensus/state_processing/src/per_block_processing/process_operations.rs @@ -711,7 +711,6 @@ fn is_valid_switch_to_compounding_request( return Ok(false); } // Verify exits for source has not been initiated - // TODO(pawan): this could be set by process_registry_updates too if source_validator.exit_epoch != spec.far_future_epoch { return Ok(false); }