Struct ethcore_miner::pool::VerifiedTransaction[][src]

pub struct VerifiedTransaction { /* fields omitted */ }

Verified transaction stored in the pool.

Methods

impl VerifiedTransaction
[src]

Create VerifiedTransaction directly from SignedTransaction.

This method should be used only:

  1. for tests
  2. In case we are converting pending block transactions that are already in the queue to match the function signature.

Gets wrapped SignedTransaction

Gets wrapped PendingTransaction

Trait Implementations

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.

impl Debug for VerifiedTransaction
[src]

Formats the value using the given formatter. Read more

impl PartialEq for VerifiedTransaction
[src]

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

This method tests for !=.

impl Eq for VerifiedTransaction
[src]

impl VerifiedTransaction for VerifiedTransaction
[src]

Transaction hash type.

Transaction sender type.

Transaction hash

Memory usage

Transaction sender

Auto Trait Implementations

impl Send for VerifiedTransaction

impl Sync for VerifiedTransaction