Struct ethjson::state::test::MultiTransaction [−][src]
pub struct MultiTransaction {
pub data: Vec<Bytes>,
pub gas_limit: Vec<Uint>,
pub gas_price: Uint,
pub nonce: Uint,
pub secret: Option<H256>,
pub to: MaybeEmpty<Address>,
pub value: Vec<Uint>,
}State test transaction deserialization.
Fields
data: Vec<Bytes>
Transaction data set.
gas_limit: Vec<Uint>
Gas limit set.
gas_price: Uint
Gas price.
nonce: Uint
Nonce.
secret: Option<H256>
Secret key.
to: MaybeEmpty<Address>
To.
value: Vec<Uint>
Value set.
Methods
impl MultiTransaction[src]
impl MultiTransactionpub fn select(&self, indexes: &PostStateIndexes) -> Transaction[src]
pub fn select(&self, indexes: &PostStateIndexes) -> TransactionBuild transaction with given indexes.
Trait Implementations
impl Debug for MultiTransaction[src]
impl Debug for MultiTransactionfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for MultiTransaction[src]
impl PartialEq for MultiTransactionfn eq(&self, other: &MultiTransaction) -> bool[src]
fn eq(&self, other: &MultiTransaction) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &MultiTransaction) -> bool[src]
fn ne(&self, other: &MultiTransaction) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for MultiTransaction
impl Send for MultiTransactionimpl Sync for MultiTransaction
impl Sync for MultiTransaction