Files
reth/examples/custom-node/src/primitives/block.rs
2025-04-10 16:16:42 +00:00

9 lines
296 B
Rust

use crate::primitives::CustomHeader;
use reth_op::OpTransactionSigned;
/// The Block type of this node
pub type Block = alloy_consensus::Block<OpTransactionSigned, CustomHeader>;
/// The body type of this node
pub type BlockBody = alloy_consensus::BlockBody<OpTransactionSigned, CustomHeader>;