From a4960ebfd793582f811690216c68b53698e722bf Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Mon, 12 Sep 2022 12:10:23 +1000 Subject: [PATCH] Clippy --- beacon_node/store/src/hot_cold_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(()); }