Skip to content

Commit

Permalink
fix blobbasefee not being called (#887)
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Sep 3, 2024
1 parent b7b673c commit 3cf7809
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/evm/src/interpreter.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,10 @@ impl EVMImpl of EVMTrait {
// BASEFEE
return self.exec_basefee();
}
if opcode == 74 {
// BLOBBASEFEE
return self.exec_blobbasefee();
}
if opcode == 80 {
// POP
return self.exec_pop();
Expand Down

0 comments on commit 3cf7809

Please sign in to comment.