Struct ethcore::miner::pool_client::PoolClient[][src]

pub struct PoolClient<'a, C: 'a> { /* fields omitted */ }

Blockchain accesss for transaction pool.

Methods

impl<'a, C: 'a> PoolClient<'a, C> where
    C: BlockInfo + CallContract
[src]

Creates new client given chain, nonce cache, accounts and service transaction verifier.

Verifies if signed transaction is executable.

This should perform any verifications that rely on chain status.

Trait Implementations

impl<'a, C: 'a> Clone for PoolClient<'a, C>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a, C: 'a> Debug for PoolClient<'a, C>
[src]

Formats the value using the given formatter. Read more

impl<'a, C: 'a> Client for PoolClient<'a, C> where
    C: TransactionVerifierClient + Sync
[src]

Is transaction with given hash already in the blockchain?

Structurarily verify given transaction.

Fetch account details for given sender.

Estimate minimal gas requirurement for given transaction.

Classify transaction (check if transaction is filtered by some contracts).

Performs pre-validation of RLP decoded transaction

impl<'a, C: 'a> NonceClient for PoolClient<'a, C> where
    C: Nonce + Sync
[src]

Fetch only account nonce for given sender.

Auto Trait Implementations

impl<'a, C> Send for PoolClient<'a, C> where
    C: Sync

impl<'a, C> Sync for PoolClient<'a, C> where
    C: Sync