Struct ethcore::engines::epoch::Transition[][src]

pub struct Transition {
    pub block_hash: H256,
    pub block_number: u64,
    pub proof: Vec<u8>,
}

A full epoch transition.

Fields

Block hash at which the transition occurred.

Block number at which the transition occurred.

"transition/epoch" proof from the engine combined with a finality proof.

Trait Implementations

impl Debug for Transition
[src]

Formats the value using the given formatter. Read more

impl Clone for Transition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Encodable for Transition
[src]

Append a value to the stream

Get rlp-encoded bytes for this instance

impl Decodable for Transition
[src]

Decode a value from RLP bytes

Auto Trait Implementations

impl Send for Transition

impl Sync for Transition