Struct ethcore::transaction::PendingTransaction [] [src]

pub struct PendingTransaction {
    pub transaction: SignedTransaction,
    pub min_block: Option<BlockNumber>,
}

Queued transaction with additional information.

Fields

Signed transaction data.

To be activated at this block. None for immediately.

Methods

impl PendingTransaction
[src]

Create a new pending transaction from signed transaction.

Trait Implementations

impl Debug for PendingTransaction
[src]

Formats the value using the given formatter.

impl Clone for PendingTransaction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PendingTransaction
[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 PendingTransaction
[src]

impl From<SignedTransaction> for PendingTransaction
[src]

Performs the conversion.