Struct ethcore::account_provider::TransactionInfo[][src]

pub struct TransactionInfo {
    pub nonce: U256,
    pub gas_price: U256,
    pub gas_limit: U256,
    pub to: Option<H160>,
    pub value: U256,
    pub data: Vec<u8>,
    pub chain_id: Option<u64>,
}

This is the transaction info we need to supply to Trezor message. It's more or less a duplicate of ethcore::transaction::Transaction, but we can't import ethcore here as that would be a circular dependency.

Fields

Nonce

Gas price

Gas limit

Receiver

Value

Data

Chain ID

Auto Trait Implementations

impl Send for TransactionInfo

impl Sync for TransactionInfo