Struct ethcore_miner::pool::verifier::Verifier[][src]

pub struct Verifier<C, S, V> { /* fields omitted */ }

Transaction verifier.

Verification can be run in parallel for all incoming transactions.

Methods

impl<C, S, V> Verifier<C, S, V>
[src]

Creates new transaction verfier with specified options.

Trait Implementations

impl<C: Debug, S: Debug, V: Debug> Debug for Verifier<C, S, V>
[src]

Formats the value using the given formatter. Read more

impl<C: Client> Verifier<Transaction> for Verifier<C, NonceAndGasPrice, VerifiedTransaction>
[src]

Verification error.

Verified transaction.

Verifies a UnverifiedTransaction and produces VerifiedTransaction instance.

Auto Trait Implementations

impl<C, S, V> Send for Verifier<C, S, V> where
    C: Send,
    S: Send,
    V: Send + Sync

impl<C, S, V> Sync for Verifier<C, S, V> where
    C: Sync,
    S: Sync,
    V: Send + Sync