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));