fixes after merge

This commit is contained in:
debris 2016-03-20 10:07:50 +01:00 committed by arkpar
parent 5c72e60b14
commit 1257ad2993
2 changed files with 2 additions and 2 deletions

View File

@ -407,7 +407,7 @@ impl<V> BlockChainClient for Client<V> where V: Verifier {
// give the sender max balance
state.sub_balance(&sender, &balance);
state.add_balance(&sender, &U256::max_value());
Executive::new(&mut state, &env_info, self.engine.deref().deref()).transact(t)
Executive::new(&mut state, &env_info, self.engine.deref().deref()).transact(t, false)
}
// TODO [todr] Should be moved to miner crate eventually.

View File

@ -184,7 +184,7 @@ impl TestBlockChainClient {
}
impl BlockChainClient for TestBlockChainClient {
fn call(&self, t: &SignedTransaction) -> Result<Executed, Error> {
fn call(&self, _t: &SignedTransaction) -> Result<Executed, Error> {
unimplemented!()
}