Trait EthBlock

Source
pub trait EthBlock {
    // Required method
    fn withdrawals(&self) -> Option<&Withdrawals>;
}
Expand description

A trait for ethereum like blocks.

Required Methods§

Source

fn withdrawals(&self) -> Option<&Withdrawals>

Returns reference to withdrawals in the block if present

Implementors§

Source§

impl<T, H> EthBlock for Block<T, H>