Skip to content

Commit

Permalink
Remove cache miss comment entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Apr 30, 2024
1 parent 65eee99 commit 470134b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions beacon_node/beacon_chain/src/beacon_chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4397,12 +4397,6 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
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))?;
Expand Down

0 comments on commit 470134b

Please sign in to comment.