Trait transaction_pool::VerifiedTransaction [] [src]

pub trait VerifiedTransaction: Debug {
    fn hash(&self) -> &H256;
fn mem_usage(&self) -> usize;
fn sender(&self) -> &Address;
fn insertion_id(&self) -> u64; }

Already verified transaction that can be safely queued.

Required Methods

Transaction hash

Memory usage

Transaction sender

Unique index of insertion (lower = older).

Implementors