chore: use reth-ethereum in example (#14409)

This commit is contained in:
Matthias Seitz
2025-02-12 09:56:15 +01:00
committed by GitHub
parent ea40f78e59
commit e9b99b0610
7 changed files with 36 additions and 37 deletions

View File

@ -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.

View File

@ -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,
};