Enum ethcore_miner::pool::local_transactions::Status[][src]

pub enum Status {
    Pending(Arc<Transaction>),
    Mined(Arc<Transaction>),
    Dropped(Arc<Transaction>),
    Replaced {
        old: Arc<Transaction>,
        new: Arc<Transaction>,
    },
    Rejected(Arc<Transaction>, String),
    Invalid(Arc<Transaction>),
    Canceled(Arc<Transaction>),
}

Status of local transaction. Can indicate that the transaction is currently part of the queue (Pending/Future) or gives a reason why the transaction was removed.

Variants

The transaction is currently in the transaction queue.

Transaction is already mined.

Transaction is dropped because of limit

Replaced because of higher gas price of another transaction.

Fields of Replaced

Replaced transaction

Transaction that replaced this one.

Transaction was never accepted to the queue. It means that it was too cheap to replace any transaction already in the pool.

Transaction is invalid.

Transaction was canceled.

Trait Implementations

impl Debug for Status
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Status
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Status
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Status

impl Sync for Status