mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat: make engine block downloaders generic over block (#13273)
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
//! Block header data primitive.
|
||||
|
||||
use core::fmt;
|
||||
use core::{fmt, hash::Hash};
|
||||
|
||||
use alloy_primitives::Sealable;
|
||||
|
||||
@ -18,6 +18,7 @@ pub trait BlockHeader:
|
||||
+ Sync
|
||||
+ Unpin
|
||||
+ Clone
|
||||
+ Hash
|
||||
+ Default
|
||||
+ fmt::Debug
|
||||
+ PartialEq
|
||||
|
||||
Reference in New Issue
Block a user