From 418d28ebeafc8e261ee5d5ac84337c7345ce91db Mon Sep 17 00:00:00 2001 From: Michael-Ixo <113350374+Michael-Ixo@users.noreply.github.com> Date: Wed, 25 Jan 2023 15:40:51 +0200 Subject: [PATCH] patch(app): add ibc proposal handlers to gov module (#289) --- app/app.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/app.go b/app/app.go index ff514ba6..533e2736 100644 --- a/app/app.go +++ b/app/app.go @@ -83,6 +83,7 @@ import ( ibctransfertypes "github.com/cosmos/ibc-go/v3/modules/apps/transfer/types" ibc "github.com/cosmos/ibc-go/v3/modules/core" ibcclient "github.com/cosmos/ibc-go/v3/modules/core/02-client" + ibcclientclient "github.com/cosmos/ibc-go/v3/modules/core/02-client/client" ibcclienttypes "github.com/cosmos/ibc-go/v3/modules/core/02-client/types" porttypes "github.com/cosmos/ibc-go/v3/modules/core/05-port/types" ibchost "github.com/cosmos/ibc-go/v3/modules/core/24-host" @@ -173,6 +174,8 @@ var ( upgradeclient.CancelProposalHandler, entityclient.ProposalHandler, tokenclient.ProposalHandler, + ibcclientclient.UpdateClientProposalHandler, + ibcclientclient.UpgradeProposalHandler, )..., ), wasm.AppModuleBasic{},