From 02134b27dde5391d52ec3f5614e9d9d152f4e966 Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Tue, 22 Aug 2023 10:48:29 +0100 Subject: [PATCH 1/2] Use `contract-build` version `3.2.0` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5b0ec32873..80fa60aaa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ array-init = { version = "2.0", default-features = false } blake2 = { version = "0.10" } cargo_metadata = { version = "0.17.0" } cfg-if = { version = "1.0" } -contract-build = { version = "4.0.0-alpha" } +contract-build = { version = "3.2.0" } derive_more = { version = "0.99.17", default-features = false } either = { version = "1.5", default-features = false } funty = { version = "2.0.0" } From cb2940fbd493756b01a21e1d79e733d05acdd90c Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Tue, 22 Aug 2023 11:00:48 +0100 Subject: [PATCH 2/2] Fix `ExecuteArgs` --- crates/e2e/src/contract_build.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/e2e/src/contract_build.rs b/crates/e2e/src/contract_build.rs index f69a36e1f6..db4114c685 100644 --- a/crates/e2e/src/contract_build.rs +++ b/crates/e2e/src/contract_build.rs @@ -179,7 +179,6 @@ fn build_contract(path_to_cargo_toml: &Path) -> PathBuf { output_type: OutputType::HumanReadable, skip_wasm_validation: false, target: Target::Wasm, - ..ExecuteArgs::default() }; match contract_build::execute(args) {