From d599e41f3dea1b7d28494101a73f406a191e2bbf Mon Sep 17 00:00:00 2001 From: Emilia Hane <58548332+emhane@users.noreply.github.com> Date: Tue, 7 Feb 2023 11:08:10 +0100 Subject: [PATCH] Remove debug comment Co-authored-by: Michael Sproul --- 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 5f15fb84bc..35dbbe39cd 100644 --- a/beacon_node/store/src/hot_cold_store.rs +++ b/beacon_node/store/src/hot_cold_store.rs @@ -1768,7 +1768,7 @@ impl, Cold: ItemStore> HotColdDB return Ok(()); } - let blob_info = self.get_blob_info(); // now returns `BlobInfo` not `Option<_>` + let blob_info = self.get_blob_info(); let oldest_blob_slot = blob_info .oldest_blob_slot .unwrap_or(eip4844_fork.start_slot(E::slots_per_epoch()));