chore(sdk): make Chain generic over data primitives (#12635)

This commit is contained in:
Emilia Hane
2024-11-19 10:27:23 +01:00
committed by GitHub
parent e859e1711d
commit 06bf5c7783
7 changed files with 86 additions and 52 deletions

View File

@ -44,7 +44,7 @@ use reth_trie_db::MerklePatriciaTrie;
use std::sync::Arc;
/// Optimism primitive types.
#[derive(Debug, Default, Clone)]
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct OpPrimitives;
impl NodePrimitives for OpPrimitives {