From 677b3fb68df15b832109e351ec4aafb581bfe50f Mon Sep 17 00:00:00 2001 From: Christoph Otter Date: Fri, 1 Sep 2023 10:30:02 +0200 Subject: [PATCH] Enable cosmwasm_1_4 for reflect contract --- contracts/reflect/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/reflect/Cargo.toml b/contracts/reflect/Cargo.toml index 0bdd45558e..8ef7e171b2 100644 --- a/contracts/reflect/Cargo.toml +++ b/contracts/reflect/Cargo.toml @@ -34,7 +34,7 @@ backtraces = ["cosmwasm-std/backtraces", "cosmwasm-vm/backtraces"] [dependencies] cosmwasm-schema = { path = "../../packages/schema" } -cosmwasm-std = { path = "../../packages/std", default-features = false, features = ["staking", "stargate", "cosmwasm_1_1"] } +cosmwasm-std = { path = "../../packages/std", default-features = false, features = ["staking", "stargate", "cosmwasm_1_4"] } schemars = "0.8.3" serde = { version = "=1.0.103", default-features = false, features = ["derive"] } thiserror = "1.0.26"