Skip to content

Commit

Permalink
Update beacon_node/store/src/hot_cold_store.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Sproul <micsproul@gmail.com>
  • Loading branch information
dapplion and michaelsproul authored Jan 9, 2025
1 parent 791395a commit 7c414cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon_node/store/src/hot_cold_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2670,7 +2670,7 @@ impl<E: EthSpec, Hot: ItemStore<E>, Cold: ItemStore<E>> HotColdDB<E, Hot, Cold>
ops.push(StoreOp::DeleteExecutionPayload(block_root));
}

if slot < anchor_info.oldest_block_slot {
if slot <= anchor_info.oldest_block_slot {
info!(
self.log,
"Payload pruning reached anchor oldest block slot";
Expand Down

0 comments on commit 7c414cc

Please sign in to comment.