Make implementation of BlobInfo more coder friendly

This commit is contained in:
Emilia Hane
2023-01-24 17:29:10 +01:00
parent 8f137df02e
commit 00ca21e84c
2 changed files with 29 additions and 48 deletions

View File

@@ -123,7 +123,7 @@ impl StoreItem for AnchorInfo {
#[derive(Debug, PartialEq, Eq, Clone, Encode, Decode, Serialize, Deserialize, Default)]
pub struct BlobInfo {
/// The slot after which blobs are available (>=).
pub oldest_blob_slot: Slot,
pub oldest_blob_slot: Option<Slot>,
}
impl StoreItem for BlobInfo {