pub trait EthBlock {
// Required method
fn withdrawals(&self) -> Option<&Withdrawals>;
}
Expand description
A trait for ethereum like blocks.
Required Methods§
Sourcefn withdrawals(&self) -> Option<&Withdrawals>
fn withdrawals(&self) -> Option<&Withdrawals>
Returns reference to withdrawals in the block if present