Merge pull request #54 from 0g-wh/wasm

add ibcwasmtypes to upgrades.go
This commit is contained in:
0g-wh 2024-08-05 09:10:39 +08:00 committed by GitHub
commit 2da75122b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,6 +20,7 @@ import (
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
packetforwardtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/types" packetforwardtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/types"
ibcwasmtypes "github.com/cosmos/ibc-go/modules/light-clients/08-wasm/types"
ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types"
ibctmmigrations "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint/migrations" ibctmmigrations "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint/migrations"
) )
@ -50,6 +51,7 @@ func (app App) RegisterUpgradeHandlers() {
crisistypes.ModuleName, crisistypes.ModuleName,
consensustypes.ModuleName, consensustypes.ModuleName,
packetforwardtypes.ModuleName, packetforwardtypes.ModuleName,
ibcwasmtypes.ModuleName,
}, },
} }