BlockBody

Type Alias BlockBody 

Source
pub type BlockBody<T = TransactionSigned, H = Header> = BlockBody<T, H>;
Expand description

A type alias for the block body used in Ethereum blocks.

Aliased Type§

pub struct BlockBody<T = TransactionSigned, H = Header> {
    pub transactions: Vec<T>,
    pub ommers: Vec<H>,
    pub withdrawals: Option<Withdrawals>,
}

Fields§

§transactions: Vec<T>

Transactions in this block.

§ommers: Vec<H>

Ommers/uncles header.

§withdrawals: Option<Withdrawals>

Block withdrawals.