From 470134b7656d2dfef9319f1bf241670daac372b5 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Tue, 30 Apr 2024 16:43:07 +1000 Subject: [PATCH] Remove cache miss comment entirely --- beacon_node/beacon_chain/src/beacon_chain.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/beacon_node/beacon_chain/src/beacon_chain.rs b/beacon_node/beacon_chain/src/beacon_chain.rs index c6bf55f4b4d..9701a7f4f21 100644 --- a/beacon_node/beacon_chain/src/beacon_chain.rs +++ b/beacon_node/beacon_chain/src/beacon_chain.rs @@ -4397,12 +4397,6 @@ impl BeaconChain { if cached_head.head_block_root() == parent_block_root { (Cow::Borrowed(head_state), cached_head.head_state_root()) } else { - info!( - self.log, - "Missed state cache during withdrawals calculation"; - "slot" => proposal_slot, - "parent_block_root" => ?parent_block_root - ); let block = self .get_blinded_block(&parent_block_root)? .ok_or(Error::MissingBeaconBlock(parent_block_root))?;