From fd56cc81c6722ea819d7002cfba0f29a4ee01a06 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Thu, 14 May 2026 22:49:52 +1000 Subject: [PATCH] Restore whimsy --- beacon_node/beacon_chain/src/shuffling_cache.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beacon_node/beacon_chain/src/shuffling_cache.rs b/beacon_node/beacon_chain/src/shuffling_cache.rs index 2a5ff5acd3..0a6dc87f05 100644 --- a/beacon_node/beacon_chain/src/shuffling_cache.rs +++ b/beacon_node/beacon_chain/src/shuffling_cache.rs @@ -170,7 +170,8 @@ impl ShufflingCache { if self .cache .get(&key) - // Replace the cached shuffling if it's not present or if it's a promise. + // Replace the committee if it's not present or if it's a promise. A bird in the hand is + // worth two in the promise-bush! .is_none_or(CacheItem::is_promise) { self.insert_cache_item(key, CacheItem::Committee(cached_shuffling));