diff --git a/CHANGELOG.md b/CHANGELOG.md index 63eda6a9..fe53e5e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ ### Fixed +- Calls to precompile `0x04` are not replaced with `memcopy` anymore - Cleared return data after calling `CREATE`/`CREATE2` ## [1.5.7] - 2024-10-31 diff --git a/Cargo.lock b/Cargo.lock index 904b33ad..de75a99a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -621,7 +621,7 @@ dependencies = [ [[package]] name = "era-compiler-llvm-context" version = "1.5.0" -source = "git+https://github.com/matter-labs/era-compiler-llvm-context?branch=main#d4f348effd94e6fba0983a1378346f264a47864e" +source = "git+https://github.com/matter-labs/era-compiler-llvm-context?branch=az-identity-precompile-no-memcopy#3068d634773ec2074b9baf98be694d45782a17dc" dependencies = [ "anyhow", "era-compiler-common", diff --git a/Cargo.toml b/Cargo.toml index db5061b4..09f7c5e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ hex = "=0.4.3" zkevm_opcode_defs = "=0.150.6" era-compiler-common = { git = "https://github.com/matter-labs/era-compiler-common", branch = "main" } -era-compiler-llvm-context = { git = "https://github.com/matter-labs/era-compiler-llvm-context", branch = "main" } +era-compiler-llvm-context = { git = "https://github.com/matter-labs/era-compiler-llvm-context", branch = "az-identity-precompile-no-memcopy" } [dev-dependencies] assert_cmd = "=2.0.16"