Struct ethcore_transaction::PendingTransaction[][src]

pub struct PendingTransaction {
    pub transaction: SignedTransaction,
    pub condition: Option<Condition>,
}

Queued transaction with additional information.

Fields

Signed transaction data.

To be activated at this condition. None for immediately.

Methods

impl PendingTransaction
[src]

Create a new pending transaction from signed transaction.

Methods from Deref<Target = SignedTransaction>

Returns transaction sender.

Returns a public key of the sender.

Checks is signature is empty.

Trait Implementations

impl Debug for PendingTransaction
[src]

Formats the value using the given formatter. Read more

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

The resulting type after dereferencing.

Dereferences the value.

impl From<SignedTransaction> for PendingTransaction
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for PendingTransaction

impl Sync for PendingTransaction