Skip to content

Commit

Permalink
fix: get rid of not
Browse files Browse the repository at this point in the history
  • Loading branch information
Rjected committed Jan 11, 2025
1 parent cc02864 commit 3507aed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/engine/tree/src/tree/cached_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl<S> CachedStateProvider<S> {
for (addr, account) in &state_updates.state {
// If the account was not modified, as in not changed and not destroyed, then we have
// nothing to do w.r.t. this particular account and can move on
if !account.status.is_not_modified() {
if account.status.is_not_modified() {
continue
}

Expand Down

0 comments on commit 3507aed

Please sign in to comment.