From 044d3126eb2bb6936fee2593616bae0f5d6e70df Mon Sep 17 00:00:00 2001 From: Alex Gartner Date: Mon, 13 May 2024 11:27:56 -0700 Subject: [PATCH] add ibc upgrade --- app/setup_handlers.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/setup_handlers.go b/app/setup_handlers.go index bc6dadfe3b..6cd807a8b0 100644 --- a/app/setup_handlers.go +++ b/app/setup_handlers.go @@ -11,6 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" consensustypes "github.com/cosmos/cosmos-sdk/x/consensus/types" crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" @@ -20,6 +21,8 @@ import ( slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/cosmos/cosmos-sdk/x/upgrade/types" + ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" emissionstypes "github.com/zeta-chain/zetacore/x/emissions/types" ) @@ -95,6 +98,12 @@ func SetupHandlers(app *App) { return vm, nil }, }, + { + index: 1715624665, + storeUpgrade: &storetypes.StoreUpgrades{ + Added: []string{capabilitytypes.ModuleName, ibcexported.ModuleName, ibctransfertypes.ModuleName}, + }, + }, }, }