fixes after merge

This commit is contained in:
debris 2016-03-20 10:07:50 +01:00
parent 46bfed6750
commit fef8237701
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 // give the sender max balance
state.sub_balance(&sender, &balance); state.sub_balance(&sender, &balance);
state.add_balance(&sender, &U256::max_value()); 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. // TODO [todr] Should be moved to miner crate eventually.

View File

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