From 0ef12d26ad87ad3ea9b0fb7969e880ad49066de6 Mon Sep 17 00:00:00 2001 From: kwt <4344285+kwtalley@users.noreply.github.com> Date: Thu, 20 Jun 2024 14:34:15 -0500 Subject: [PATCH] add previous cosmwasm release capabilities --- app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index 250f3940d..37979fd02 100644 --- a/app/app.go +++ b/app/app.go @@ -646,7 +646,7 @@ func New( // Add the capabilities and indicate that provwasm contracts can be run on this chain. // Capabilities defined here: https://github.com/CosmWasm/cosmwasm/blob/main/docs/CAPABILITIES-BUILT-IN.md - supportedFeatures := "staking,provenance,stargate,iterator,cosmwasm_1_4" + supportedFeatures := "staking,provenance,stargate,iterator,cosmwasm_1_1, cosmwasm_1_2, cosmwasm_1_3, cosmwasm_1_4" // The last arguments contain custom message handlers, and custom query handlers, // to allow smart contracts to use provenance modules.