Struct ethcore::block::SealedBlock
[−]
[src]
pub struct SealedBlock { /* fields omitted */ }
A block that has a valid seal.
The block's header has valid seal arguments. The block cannot be reversed into a ClosedBlock
or OpenBlock
.
Methods
impl SealedBlock
[src]
Trait Implementations
impl Drain for SealedBlock
[src]
fn drain(self) -> StateDB
Drop this object and return the underlieing database.
impl IsBlock for SealedBlock
[src]
fn block(&self) -> &ExecutedBlock
Get the ExecutedBlock
associated with this object.
fn to_base(&self) -> Block
Get the base Block
object associated with this.
fn header(&self) -> &Header
Get the header associated with this object's block.
fn state(&self) -> &State
Get the final state associated with this object's block.
fn transactions(&self) -> &[SignedTransaction]
Get all information on transactions in this block.
fn receipts(&self) -> &[Receipt]
Get all information on receipts in this block.
fn traces(&self) -> &Option<Vec<Vec<FlatTrace>>>
Get all information concerning transaction tracing in this block.
fn uncles(&self) -> &[Header]
Get all uncles in this block.