diff --git a/canister_templates/experimental.wasm b/canister_templates/experimental.wasm index 7a365b7bc1..1d4bfd9037 100644 Binary files a/canister_templates/experimental.wasm and b/canister_templates/experimental.wasm differ diff --git a/package.json b/package.json index 2683049766..039fa2b93c 100644 --- a/package.json +++ b/package.json @@ -88,8 +88,8 @@ }, "azle": { "globalDependencies": { - "wasi2ic": "https://github.com/wasm-forge/wasi2ic?rev=676508667a0c3b9fb900ce19cb33bfafa2ae8f8e", - "node": "22.12.0", + "wasi2ic": "https://github.com/wasm-forge/wasi2ic?rev=806c3558aad24224852a9582f018178402cb3679#806c3558", + "node": "20.11.0", "rust": "1.83.0", "dfx": "0.22.0" } diff --git a/src/build/experimental/commands/compile/wasm_binary/rust/experimental_canister_template/src/init_and_post_upgrade.rs b/src/build/experimental/commands/compile/wasm_binary/rust/experimental_canister_template/src/init_and_post_upgrade.rs index 1e6658f46c..2d5a52028f 100644 --- a/src/build/experimental/commands/compile/wasm_binary/rust/experimental_canister_template/src/init_and_post_upgrade.rs +++ b/src/build/experimental/commands/compile/wasm_binary/rust/experimental_canister_template/src/init_and_post_upgrade.rs @@ -16,7 +16,7 @@ pub extern "C" fn init(function_index: i32, pass_arg_data: i32) { // Without something like this the init and post_upgrade functions // seem to be optimized into the same function in the Wasm binary // This causes problems during Wasm binary manipulation - format!("prevent init and post_upgrade optimization"); + let _ = format!("prevent init and post_upgrade optimization"); initialize(true, function_index, pass_arg_data);