openethereum/src/action_params.rs

48 lines
1.2 KiB
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-15 15:00:28 +01:00
pub code_address: Address,
/// Receive address. Usually equal to code_address,
/// except when called using CALLCODE.
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-15 15:00:28 +01:00
pub code: Option<Bytes>,
2016-01-11 02:42:02 +01:00
/// Input data.
2016-01-15 15:00:28 +01:00
pub data: Option<Bytes>
2016-01-09 00:51:09 +01:00
}
2016-01-11 16:33:08 +01:00
impl ActionParams {
2016-01-19 17:02:01 +01:00
/// TODO [Gav Wood] Please document me
2016-01-11 16:33:08 +01:00
pub fn new() -> ActionParams {
ActionParams {
2016-01-15 15:00:28 +01:00
code_address: Address::new(),
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(),
2016-01-15 15:00:28 +01:00
code: None,
data: None
2016-01-09 00:51:09 +01:00
}
}
}