diff --git a/crates/chain-state/src/in_memory.rs b/crates/chain-state/src/in_memory.rs index 8d5c1ffca0..3ad5c4333e 100644 --- a/crates/chain-state/src/in_memory.rs +++ b/crates/chain-state/src/in_memory.rs @@ -565,7 +565,7 @@ impl CanonicalInMemoryState { /// State after applying the given block, this block is part of the canonical chain that partially /// stored in memory and can be traced back to a canonical block on disk. -#[derive(Debug, PartialEq, Eq, Clone)] +#[derive(Debug, PartialEq, Clone)] pub struct BlockState { /// The executed block that determines the state after this block has been executed. block: ExecutedBlock, @@ -748,8 +748,6 @@ impl PartialEq for ExecutedBlock { } } -impl Eq for ExecutedBlock {} - impl ExecutedBlock { /// Returns a reference to an inner [`SealedBlock`] #[inline]