Skip to content

Commit

Permalink
fix[venom]: add missing extcodesize+hash effects (#4373)
Browse files Browse the repository at this point in the history
per title -- effects.py was missing extcodesize and extcodehash effects.
  • Loading branch information
charles-cooper authored Nov 26, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent cda634d commit e98e004
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vyper/venom/effects.py
Original file line number Diff line number Diff line change
@@ -68,6 +68,8 @@ def __iter__(self):
"balance": BALANCE,
"selfbalance": BALANCE,
"extcodecopy": EXTCODE,
"extcodesize": EXTCODE,
"extcodehash": EXTCODE,
"selfdestruct": BALANCE, # may modify code, but after the transaction
"log": MEMORY,
"revert": MEMORY,

0 comments on commit e98e004

Please sign in to comment.