Skip to content

Commit

Permalink
remove unnecessary effect
Browse files Browse the repository at this point in the history
  • Loading branch information
HodanPlodky committed Feb 3, 2025
1 parent 90e03f0 commit 6a79288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/venom/effects.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __iter__(self):
"create2": ALL ^ (MEMORY | IMMUTABLES),
"invoke": ALL, # could be smarter, look up the effects of the invoked function
"log": LOG,
"dloadbytes": MEMORY | IMMUTABLES,
"dloadbytes": MEMORY,
"dload": MEMORY,
"returndatacopy": MEMORY,
"calldatacopy": MEMORY,
Expand Down

0 comments on commit 6a79288

Please sign in to comment.