From ccf3f08e5238064f173971ace03d5213654199a3 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Tue, 20 Dec 2022 18:22:24 +0100 Subject: [PATCH] Remove fix_msg argument from Instantiate2 --- packages/std/src/results/cosmos_msg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/std/src/results/cosmos_msg.rs b/packages/std/src/results/cosmos_msg.rs index e7c63418f4..cc24034322 100644 --- a/packages/std/src/results/cosmos_msg.rs +++ b/packages/std/src/results/cosmos_msg.rs @@ -164,6 +164,7 @@ pub enum WasmMsg { /// /// This is translated to a [MsgInstantiateContract2](https://github.com/CosmWasm/wasmd/blob/v0.29.2/proto/cosmwasm/wasm/v1/tx.proto#L73-L96). /// `sender` is automatically filled with the current contract's address. + /// `fix_msg` is automatically set to false. #[cfg(feature = "cosmwasm_1_2")] Instantiate2 { admin: Option, @@ -175,7 +176,6 @@ pub enum WasmMsg { msg: Binary, funds: Vec, salt: Binary, - fix_msg: bool, }, /// Migrates a given contracts to use new wasm code. Passes a MigrateMsg to allow us to /// customize behavior.