Struct ethcore::tree_route::TreeRoute [] [src]

pub struct TreeRoute {
    pub blocks: Vec<H256>,
    pub ancestor: H256,
    pub index: usize,
}

Represents a tree route between from block and to block:

Fields

A vector of hashes of all blocks, ordered from from to to.

Best common ancestor of these blocks.

An index where best common ancestor would be.

Trait Implementations

impl Debug for TreeRoute
[src]

Formats the value using the given formatter.