Skip to content

Commit

Permalink
fix for broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
shouc committed Aug 15, 2023
1 parent ee11130 commit 7d82c62
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/evm/middlewares/sha3_bypass.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,7 @@ impl<I, VS, S> Middleware<VS, I, S> for Sha3TaintAnalysis
0x01..=0x7 => { pop_push!(2, 1) },
0x08..=0x09 => { pop_push!(3, 1) },
0xa | 0x0b | 0x10..=0x14 => { pop_push!(2, 1); }
0x15 => {
// ISZERO
self.dirty_stack.pop();
self.dirty_stack.push(false);
}
0x15 => { pop_push!(1, 1); }
0x16..=0x18 => { pop_push!(2, 1); }
0x19 => { pop_push!(1, 1); }
0x1a..=0x1d => { pop_push!(2, 1); }
Expand Down

0 comments on commit 7d82c62

Please sign in to comment.