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

Commit

Permalink
Fix botched merge
Browse files Browse the repository at this point in the history
  • Loading branch information
arkpar committed Oct 20, 2016
1 parent b3097c8 commit 3b6e24b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ethcore/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -626,8 +626,6 @@ impl State {
None => {
// first check bloom if it is not in database for sure
if check_bloom && !self.db.check_account_bloom(a) { return f(None); }
// not found in the global cache, get from the DB and insert into local
if !self.db.check_account_bloom(a) { return f(None); }
let db = self.trie_factory.readonly(self.db.as_hashdb(), &self.root).expect(SEC_TRIE_DB_UNWRAP_STR);
let mut maybe_acc = match db.get(a) {
Ok(acc) => acc.map(Account::from_rlp),
Expand Down

0 comments on commit 3b6e24b

Please sign in to comment.