Skip to content

Commit

Permalink
πŸ”’ Add returndata to create/2 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Philogy committed Mar 24, 2024
1 parent e3838b3 commit 5cf11b7
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions src/transformer/std_evm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,14 +283,28 @@ pub fn get_standard_opcodes_and_deps() -> (Vec<&'static str>, Vec<Op>) {
3,
true,
vec!["MEMORY", "CONTROL_FLOW"],
vec!["CODE", "BALANCES", "STORAGE", "TRANSIENT", "MEMSIZE"],
vec![
"CODE",
"BALANCES",
"STORAGE",
"TRANSIENT",
"MEMSIZE",
"RETURNDATA",
],
),
Op::new(
"create2",
4,
true,
vec!["MEMORY", "CONTROL_FLOW"],
vec!["CODE", "BALANCES", "STORAGE", "TRANSIENT", "MEMSIZE"],
vec![
"CODE",
"BALANCES",
"STORAGE",
"TRANSIENT",
"MEMSIZE",
"RETURNDATA",
],
),
////////////////////////////////////////////////////////////////,
// TERMINATION //,
Expand Down

0 comments on commit 5cf11b7

Please sign in to comment.