From 7509cf6d3b6a704a627bb430ff072f45d81cd01c Mon Sep 17 00:00:00 2001 From: Lion - dapplion <35266934+dapplion@users.noreply.github.com> Date: Fri, 21 Jun 2024 09:55:23 +0200 Subject: [PATCH] Update per_block_processing.rs --- consensus/state_processing/src/per_block_processing.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/consensus/state_processing/src/per_block_processing.rs b/consensus/state_processing/src/per_block_processing.rs index 05621d188b..e7655b453a 100644 --- a/consensus/state_processing/src/per_block_processing.rs +++ b/consensus/state_processing/src/per_block_processing.rs @@ -626,6 +626,7 @@ pub fn process_withdrawals>( // Update pending partial withdrawals [New in Electra:EIP7251] if let Some(partial_withdrawals_count) = partial_withdrawals_count { + // TODO(electra): Use efficient pop_front after milhouse release https://github.com/sigp/milhouse/pull/38 let new_partial_withdrawals = state .pending_partial_withdrawals()? .iter_from(partial_withdrawals_count)?