Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions crates/evm/evm/src/inspectors/revert_diagnostic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,6 @@ where

/// Handles `REVERT` and `EXTCODESIZE` opcodes for diagnostics.
fn step(&mut self, interp: &mut Interpreter, ctx: &mut CTX) {
// Check if an action has already been set (which would null the instruction pointer)
if interp.bytecode.action.is_some() {
return;
}
Comment on lines -211 to -214
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To double check @DaniPopes, this is no longer required in revm 28 per #11216 and we can therefore remove it?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep


match interp.bytecode.opcode() {
opcode::REVERT => self.handle_revert(interp, ctx),
opcode::EXTCODESIZE => self.handle_extcodesize(interp, ctx),
Expand Down
Loading