Trait ethcore::state::StateInfo[][src]

pub trait StateInfo {
    fn nonce(&self, a: &Address) -> TrieResult<U256>;
fn balance(&self, a: &Address) -> TrieResult<U256>;
fn storage_at(&self, address: &Address, key: &H256) -> TrieResult<H256>;
fn code(&self, a: &Address) -> TrieResult<Option<Arc<Bytes>>>; }

Provides subset of State methods to query state information

Required Methods

Get the nonce of account a.

Get the balance of account a.

Mutate storage of account address so that it is value for key.

Get accounts' code.

Implementations on Foreign Types

impl StateInfo for ()
[src]

Implementors