Struct ethcore_rpc::v1::types::TransactionRequest [] [src]

pub struct TransactionRequest {
    pub from: Option<H160>,
    pub to: Option<H160>,
    pub gas_price: Option<U256>,
    pub gas: Option<U256>,
    pub value: Option<U256>,
    pub data: Option<Bytes>,
    pub nonce: Option<U256>,
    pub min_block: Option<BlockNumber>,
}

Transaction request coming from RPC

Fields

Sender

Recipient

Gas Price

Gas

Value of transaction in wei

Additional data sent with transaction

Transaction's nonce

Delay until this block if specified.

Trait Implementations

impl Hash for TransactionRequest
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

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

impl Default for TransactionRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for TransactionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TransactionRequest
[src]

Formats the value using the given formatter.

impl Display for TransactionRequest
[src]

Formats the value using the given formatter.

impl From<TransactionRequest> for TransactionRequest
[src]

Performs the conversion.

impl From<FilledTransactionRequest> for TransactionRequest
[src]

Performs the conversion.

impl Into<TransactionRequest> for TransactionRequest
[src]

Performs the conversion.