Struct ethcore::transaction::PendingTransaction
[−]
[src]
pub struct PendingTransaction { pub transaction: SignedTransaction, pub min_block: Option<BlockNumber>, }
Queued transaction with additional information.
Fields
transaction: SignedTransaction
Signed transaction data.
min_block: Option<BlockNumber>
To be activated at this block. None
for immediately.
Methods
impl PendingTransaction
[src]
fn new(signed: SignedTransaction, min_block: Option<BlockNumber>) -> Self
Create a new pending transaction from signed transaction.
Trait Implementations
impl Debug for PendingTransaction
[src]
impl Clone for PendingTransaction
[src]
fn clone(&self) -> PendingTransaction
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl PartialEq for PendingTransaction
[src]
fn eq(&self, __arg_0: &PendingTransaction) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &PendingTransaction) -> bool
This method tests for !=
.
impl Eq for PendingTransaction
[src]
impl From<SignedTransaction> for PendingTransaction
[src]
fn from(t: SignedTransaction) -> Self
Performs the conversion.