openethereum/src/action_params.rs

43 lines
995 B
Rust
Raw Normal View History

2016-01-11 02:42:02 +01:00
//! Evm input params.
2016-01-09 00:51:09 +01:00
use util::hash::*;
use util::uint::*;
use util::bytes::*;
2016-01-11 17:37:22 +01:00
// TODO: should be a trait, possible to avoid cloning everything from a Transaction(/View).
/// Action (call/create) input params. Everything else should be specified in Externalities.
#[derive(Clone, Debug)]
2016-01-11 16:33:08 +01:00
pub struct ActionParams {
2016-01-11 02:42:02 +01:00
/// Address of currently executed code.
2016-01-09 00:51:09 +01:00
pub address: Address,
2016-01-11 02:42:02 +01:00
/// Sender of current part of the transaction.
2016-01-09 00:51:09 +01:00
pub sender: Address,
2016-01-11 02:42:02 +01:00
/// Transaction initiator.
2016-01-09 00:51:09 +01:00
pub origin: Address,
2016-01-11 02:42:02 +01:00
/// Gas paid up front for transaction execution
2016-01-09 00:51:09 +01:00
pub gas: U256,
2016-01-11 02:42:02 +01:00
/// Gas price.
2016-01-09 00:51:09 +01:00
pub gas_price: U256,
2016-01-11 02:42:02 +01:00
/// Transaction value.
2016-01-09 00:51:09 +01:00
pub value: U256,
2016-01-11 02:42:02 +01:00
/// Code being executed.
2016-01-09 00:51:09 +01:00
pub code: Bytes,
2016-01-11 02:42:02 +01:00
/// Input data.
2016-01-09 17:55:47 +01:00
pub data: Bytes
2016-01-09 00:51:09 +01:00
}
2016-01-11 16:33:08 +01:00
impl ActionParams {
pub fn new() -> ActionParams {
ActionParams {
2016-01-09 00:51:09 +01:00
address: Address::new(),
sender: Address::new(),
origin: Address::new(),
gas: U256::zero(),
gas_price: U256::zero(),
value: U256::zero(),
code: vec![],
data: vec![],
}
}
}