mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-07 05:25:14 -05:00
9 lines
296 B
Rust
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>;
|