Merge branch 'master' into tx_queue_gas_limit

Conflicts:
	miner/src/transaction_queue.rs
This commit is contained in:
Tomasz Drwięga
2016-03-18 12:25:36 +01:00
24 changed files with 121 additions and 56 deletions

View File

@@ -67,6 +67,7 @@ pub trait Ext {
/// Returns Err, if we run out of gas.
/// Otherwise returns call_result which contains gas left
/// and true if subcall was successfull.
#[cfg_attr(feature="dev", allow(too_many_arguments))]
fn call(&mut self,
gas: &U256,
sender_address: &Address,

View File

@@ -521,6 +521,7 @@ impl Interpreter {
Ok(overflowing!(offset.overflowing_add(size.clone())))
}
#[cfg_attr(feature="dev", allow(too_many_arguments))]
fn exec_instruction(&self,
gas: Gas,
params: &ActionParams,