From 54699f808c7dcfafadf8b8895c880696e65d5c32 Mon Sep 17 00:00:00 2001 From: Emilia Hane Date: Wed, 18 Jan 2023 20:29:00 +0100 Subject: [PATCH] fixup! Clarify hybrid blob prune solution and fix error handling --- 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 3cefe97754..1aa073788c 100644 --- a/beacon_node/store/src/hot_cold_store.rs +++ b/beacon_node/store/src/hot_cold_store.rs @@ -1711,7 +1711,7 @@ impl, Cold: ItemStore> HotColdDB Ok(()) } - // + /// Try to prune blobs approximating data availability boundary when it is not at hand. pub fn try_prune_most_blobs(&self, force: bool) -> Result<(), Error> { let eip4844_fork = match self.spec.eip4844_fork_epoch { Some(epoch) => epoch,