Struct ethcore_miner::pool::local_transactions::LocalTransactionsList[][src]

pub struct LocalTransactionsList { /* fields omitted */ }

Keeps track of local transactions that are in the queue or were mined/dropped recently.

Methods

impl LocalTransactionsList
[src]

Create a new list of local transactions.

Returns true if the transaction is already in local transactions.

Return a map of all currently stored transactions.

Returns true if there are pending local transactions.

Trait Implementations

impl Debug for LocalTransactionsList
[src]

Formats the value using the given formatter. Read more

impl Default for LocalTransactionsList
[src]

Returns the "default value" for a type. Read more

impl Listener<Transaction> for LocalTransactionsList
[src]

The transaction has been successfuly added to the pool. If second argument is Some the transaction has took place of some other transaction which was already in pool. NOTE: You won't be notified about drop of old transaction separately. Read more

The transaction was rejected from the pool. It means that it was too cheap to replace any transaction already in the pool. Read more

The transaction was pushed out from the pool because of the limit.

The transaction was marked as invalid by executor.

The transaction has been canceled.

The transaction has been mined.

Auto Trait Implementations

impl Send for LocalTransactionsList

impl Sync for LocalTransactionsList