Struct ethcore_light::request::StateProof [] [src]

pub struct StateProof {
    pub block: H256,
    pub key1: H256,
    pub key2: Option<H256>,
    pub from_level: u32,
}

A request for a state proof

Fields

Block hash to query state from.

Key of the state trie -- corresponds to account hash.

Key in that account's storage trie; if empty, then the account RLP should be returned.

if greater than zero, trie nodes beyond this level may be omitted.

Trait Implementations

impl Debug for StateProof
[src]

Formats the value using the given formatter.

impl Clone for StateProof
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StateProof
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for StateProof
[src]