Skip to content

Commit

Permalink
add ibc upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
gartnera committed May 13, 2024
1 parent 51d5743 commit 044d312
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions app/setup_handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
)

Expand Down Expand Up @@ -95,6 +98,12 @@ func SetupHandlers(app *App) {
return vm, nil

Check warning on line 98 in app/setup_handlers.go

View check run for this annotation

Codecov / codecov/patch

app/setup_handlers.go#L98

Added line #L98 was not covered by tests
},
},
{
index: 1715624665,
storeUpgrade: &storetypes.StoreUpgrades{
Added: []string{capabilitytypes.ModuleName, ibcexported.ModuleName, ibctransfertypes.ModuleName},
},
},
},
}

Expand Down

0 comments on commit 044d312

Please sign in to comment.