diff --git a/beacon_node/store/src/hot_cold_store.rs b/beacon_node/store/src/hot_cold_store.rs index 8a29e36d42..80de674e9a 100644 --- a/beacon_node/store/src/hot_cold_store.rs +++ b/beacon_node/store/src/hot_cold_store.rs @@ -1448,7 +1448,7 @@ impl, Cold: ItemStore> HotColdDB // whether it was at a skipped slot. However for a fully pruned database its parent // should *always* have been pruned. let split_parent_block_root = split_state.get_block_root(split.slot - 1)?; - if !self.execution_payload_exists(&split_parent_block_root)? && !force { + if !self.execution_payload_exists(split_parent_block_root)? && !force { info!(self.log, "Execution payloads are pruned"); return Ok(()); }