mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: use reth-ethereum in example (#14409)
This commit is contained in:
@ -1,10 +1,11 @@
|
||||
//! Block header data primitive.
|
||||
|
||||
use crate::{InMemorySize, MaybeCompact, MaybeSerde, MaybeSerdeBincodeCompat};
|
||||
use alloy_primitives::Sealable;
|
||||
use core::{fmt, hash::Hash};
|
||||
|
||||
use alloy_primitives::Sealable;
|
||||
|
||||
use crate::{InMemorySize, MaybeCompact, MaybeSerde, MaybeSerdeBincodeCompat};
|
||||
/// Re-exported alias
|
||||
pub use alloy_consensus::BlockHeader as AlloyBlockHeader;
|
||||
|
||||
/// Helper trait that unifies all behaviour required by block header to support full node
|
||||
/// operations.
|
||||
|
||||
@ -95,7 +95,7 @@ pub use transaction::{
|
||||
pub mod block;
|
||||
pub use block::{
|
||||
body::{BlockBody, FullBlockBody},
|
||||
header::{BlockHeader, FullBlockHeader},
|
||||
header::{AlloyBlockHeader, BlockHeader, FullBlockHeader},
|
||||
Block, FullBlock, RecoveredBlock, SealedBlock,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user