Trait ethcore::verification::queue::kind::BlockLike[][src]

pub trait BlockLike {
    fn hash(&self) -> H256;
fn parent_hash(&self) -> H256;
fn difficulty(&self) -> U256; }

Something which can produce a hash and a parent hash.

Required Methods

Get the hash of this item.

Get the hash of this item's parent.

Get the difficulty of this item.

Implementors