Trait ethcore_miner::pool::PoolVerifiedTransaction[][src]

pub trait PoolVerifiedTransaction: Debug {
    type Hash: Eq + Clone + Hash + Debug + LowerHex;
    type Sender: Eq + Clone + Hash + Debug;
    fn hash(&self) -> &Self::Hash;
fn mem_usage(&self) -> usize;
fn sender(&self) -> &Self::Sender; }

Already verified transaction that can be safely queued.

Associated Types

Transaction hash type.

Transaction sender type.

Required Methods

Transaction hash

Memory usage

Transaction sender

Implementors