From 9929ea0da951c4e8f10253feec6bff0f76fc1e71 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Tue, 19 May 2026 15:50:41 +1000 Subject: [PATCH] Remove outdated Pending/Full comment --- beacon_node/beacon_chain/src/shuffling_cache.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/beacon_node/beacon_chain/src/shuffling_cache.rs b/beacon_node/beacon_chain/src/shuffling_cache.rs index 7e44a33805..3351fb70ab 100644 --- a/beacon_node/beacon_chain/src/shuffling_cache.rs +++ b/beacon_node/beacon_chain/src/shuffling_cache.rs @@ -401,8 +401,6 @@ where let (mut state, state_root) = if let Some((state, state_root)) = head_state_opt { (state, state_root) } else { - // We assume that the `Pending` state has the same shufflings as a `Full` state for the - // same block. Analysis: https://hackmd.io/@dapplion/gloas_dependant_root let (state_root, state) = store .get_advanced_hot_state(head_block_root, target_slot, head_block.state_root) .map_err(BeaconChainError::DBError)?