Enum ethcore::miner::LocalTransactionStatus [] [src]

pub enum LocalTransactionStatus {
    Pending,
    Future,
    Mined(SignedTransaction),
    Dropped(SignedTransaction),
    Replaced(SignedTransaction, U256, H256),
    Rejected(SignedTransactionTransactionError),
    Invalid(SignedTransaction),
}

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.

The transaction is in future part of the queue.

Transaction is already mined.

Transaction is dropped because of limit

Replaced because of higher gas price of another transaction.

Transaction was never accepted to the queue.

Transaction is invalid.

Trait Implementations

impl Debug for Status
[src]

Formats the value using the given formatter.

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