Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Apr 26, 2024
1 parent 3efd6e9 commit 97b9860
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion compiler_tester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ evm = { git = "https://github.com/rust-ethereum/evm", branch = "master" }
zkevm-assembly = { git = "https://github.com/matter-labs/era-zkEVM-assembly", branch = "v1.5.0" }
zkevm_opcode_defs = { git = "https://github.com/matter-labs/era-zkevm_opcode_defs", branch = "v1.5.0" }
zkevm_tester = { git = "https://github.com/matter-labs/era-zkevm_tester", branch = "v1.5.0" }
#zkevm_tester = { path = "../../era-zkevm_tester" }

vm2 = { git = "https://github.com/matter-labs/vm2", optional = true }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,15 +211,13 @@ impl EraVMDeployer for SystemContractDeployer {
calldata.extend(init_code);
calldata.extend(constructor_calldata);

let result = vm.execute::<M>(
vm.execute::<M>(
test_name,
entry_address,
caller,
Some(context_u128_value),
calldata,
Some(vm_launch_option),
);

result
)
}
}
1 change: 0 additions & 1 deletion compiler_tester/src/vm/eravm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ use std::time::Duration;
use std::time::Instant;

use colored::Colorize;
use web3::ethabi::Hash;

use crate::compilers::downloader::Downloader as CompilerDownloader;
use crate::vm::execution_result::ExecutionResult;
Expand Down
1 change: 0 additions & 1 deletion fuzzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ semver = { version = "1.0", features = ["serde"] }

zkevm-assembly = { git = "https://github.com/matter-labs/era-zkEVM-assembly", branch = "v1.5.0" }
zkevm_tester = { git = "https://github.com/matter-labs/era-zkevm_tester", branch = "v1.5.0" }
#zkevm_tester = { path = "../../era-zkevm_tester" }

era-compiler-llvm-context = { git = "https://github.com/matter-labs/era-compiler-llvm-context", branch = "v1.5.0" }
era-compiler-solidity = { git = "https://github.com/matter-labs/era-compiler-solidity", branch = "v1.5.0" }
Expand Down

0 comments on commit 97b9860

Please sign in to comment.