diff --git a/app/app.go b/app/app.go index 68b49b84..3171e128 100644 --- a/app/app.go +++ b/app/app.go @@ -77,6 +77,7 @@ import ( ibctransfertypes "github.com/cosmos/ibc-go/v4/modules/apps/transfer/types" ibc "github.com/cosmos/ibc-go/v4/modules/core" ibcclient "github.com/cosmos/ibc-go/v4/modules/core/02-client" + ibcclientclient "github.com/cosmos/ibc-go/v4/modules/core/02-client/client" ibcclienttypes "github.com/cosmos/ibc-go/v4/modules/core/02-client/types" ibcporttypes "github.com/cosmos/ibc-go/v4/modules/core/05-port/types" ibchost "github.com/cosmos/ibc-go/v4/modules/core/24-host" @@ -184,6 +185,8 @@ func getGovProposalHandlers() []govclient.ProposalHandler { distrclient.ProposalHandler, upgradeclient.ProposalHandler, upgradeclient.CancelProposalHandler, + ibcclientclient.UpdateClientProposalHandler, + ibcclientclient.UpgradeProposalHandler, ) govProposalHandlers = append(govProposalHandlers, wasmclient.ProposalHandlers...)