Skip to content

Commit

Permalink
refine create effects
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Oct 1, 2024
1 parent 2e6cbb1 commit bcd4580
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vyper/venom/effects.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ class Effects(Flag):
"tstore": TRANSIENT,
"mstore": MEMORY,
"istore": IMMUTABLES,
"call": ALL,
"delegatecall": ALL,
"call": ALL ^ IMMUTABLES,
"delegatecall": ALL ^ IMMUTABLES,
"staticcall": MEMORY | RETURNDATA,
"create": ALL,
"create2": ALL,
"create": ALL ^ (MEMORY | IMMUTABLES),
"create2": ALL ^ (MEMORY | IMMUTABLES),
"invoke": ALL, # could be smarter, look up the effects of the invoked function
"dloadbytes": MEMORY,
"returndatacopy": MEMORY,
Expand Down

0 comments on commit bcd4580

Please sign in to comment.