From 8df254a6c73abb4b025add3e4fd33c2510023bda Mon Sep 17 00:00:00 2001 From: Derek Adams Date: Wed, 5 Oct 2022 13:40:21 -0400 Subject: [PATCH] add comment to indicate why cosmwasm_1_1 cap added --- app/app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/app.go b/app/app.go index 14ac71cc8c..488bcf2fbf 100644 --- a/app/app.go +++ b/app/app.go @@ -498,6 +498,7 @@ func New( querierRegistry.RegisterQuerier(metadatatypes.RouterKey, metadatawasm.Querier(app.MetadataKeeper)) // Add the staking feature and indicate that provwasm contracts can be run on this chain. + // Addition of cosmwasm_1_1 adds capability defined here: https://github.com/CosmWasm/cosmwasm/pull/1356 supportedFeatures := "staking,provenance,stargate,iterator,cosmwasm_1_1" // The last arguments contain custom message handlers, and custom query handlers,