Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Fix estimate gas
Browse files Browse the repository at this point in the history
  • Loading branch information
gavofyork committed Jan 13, 2017
1 parent e1251ff commit 43aa906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethcore/src/client/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ impl BlockChainClient for Client {

Executive::new(&mut state, &env_info, &*self.engine, &self.factories.vm)
.transact(&tx, options.clone())
.map(|r| r.exception.is_some())
.map(|r| r.exception.is_none())
.unwrap_or(false)
};

Expand Down

0 comments on commit 43aa906

Please sign in to comment.