From e4b447395ac27fab1975483681358336635a2744 Mon Sep 17 00:00:00 2001 From: Emilia Hane <58548332+emhane@users.noreply.github.com> Date: Tue, 24 Jan 2023 10:50:39 +0100 Subject: [PATCH] Clarify wording Co-authored-by: Michael Sproul --- beacon_node/store/src/metadata.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/store/src/metadata.rs b/beacon_node/store/src/metadata.rs index 4e7b0df7b..ef402d1c0 100644 --- a/beacon_node/store/src/metadata.rs +++ b/beacon_node/store/src/metadata.rs @@ -122,7 +122,7 @@ impl StoreItem for AnchorInfo { /// Database parameters relevant to blob sync. #[derive(Debug, PartialEq, Eq, Clone, Encode, Decode, Serialize, Deserialize, Default)] pub struct BlobInfo { - /// The slot before which blobs are available. + /// The slot after which blobs are available (>=). pub oldest_blob_slot: Slot, }