Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgar2017 committed Dec 6, 2024
1 parent 63ecc8e commit 780e68b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions benchmark_analyzer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ pub use self::benchmark::group::element::Element as BenchmarkElement;
pub use self::benchmark::group::Group as BenchmarkGroup;
pub use self::benchmark::metadata::Metadata;
pub use self::benchmark::Benchmark;

///
/// The all elements group name.
///
Expand Down
4 changes: 2 additions & 2 deletions compiler_tester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ vm2 = { git = "https://github.com/matter-labs/vm2", optional = true, package = "
era-compiler-common = { git = "https://github.com/matter-labs/era-compiler-common", branch = "main" }
era-compiler-downloader = { 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-solidity = { git = "https://github.com/matter-labs/era-compiler-solidity", branch = "az-support-evmla-pushsize" }
era-solc = { git = "https://github.com/matter-labs/era-compiler-solidity", branch = "az-support-evmla-pushsize" }
era-compiler-solidity = { git = "https://github.com/matter-labs/era-compiler-solidity", branch = "main" }
era-solc = { git = "https://github.com/matter-labs/era-compiler-solidity", branch = "main" }
era-compiler-vyper = { git = "https://github.com/matter-labs/era-compiler-vyper", branch = "main" }

solidity-adapter = { path = "../solidity_adapter" }
Expand Down
5 changes: 2 additions & 3 deletions compiler_tester/src/test/case/input/deploy_evm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,14 @@ impl DeployEVM {
contract_identifier: self.identifier.clone(),
},
);

let size = self.deploy_code.len();
let calldata = self.calldata.inner.clone();
let mut code = self.deploy_code;
code.extend(self.calldata.inner);

let vm = vm.update_deploy_balance(&self.caller);
let mut vm =
vm.fill_deploy_new_transaction(self.caller, self.value, evm_version, code);
let mut vm = vm.fill_deploy_new_transaction(self.caller, self.value, evm_version, code);

let result = match vm.state.transact_commit() {
Ok(res) => res,
Expand Down

0 comments on commit 780e68b

Please sign in to comment.