diff --git a/crates/chain-state/src/in_memory.rs b/crates/chain-state/src/in_memory.rs index 069726277b38..68329be09d60 100644 --- a/crates/chain-state/src/in_memory.rs +++ b/crates/chain-state/src/in_memory.rs @@ -656,7 +656,7 @@ impl BlockState { } /// Represents an executed block stored in-memory. -#[derive(Clone, Debug, PartialEq, Eq)] +#[derive(Clone, Debug, PartialEq, Eq, Default)] pub struct ExecutedBlock { /// Sealed block the rest of fields refer to. pub block: Arc, @@ -671,7 +671,7 @@ pub struct ExecutedBlock { } impl ExecutedBlock { - /// `ExecutedBlock` constructor. + /// [`ExecutedBlock`] constructor. pub const fn new( block: Arc, senders: Arc>,