From 3beeb79646cdacdf26ccaa9368ee06d91a67289f Mon Sep 17 00:00:00 2001 From: Brian Woods Date: Tue, 3 May 2022 14:38:34 -0600 Subject: [PATCH] feat: added update-clent and IBC update proposals Changelog update lint gofmt --- CHANGELOG.md | 1 + app/app.go | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d12530835..7673f5df6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Features - [835](https://github.com/umee-network/umee/pull/835) Add miss counter query to oracle cli. +- [860](https://github.com/umee-network/umee/pull/860) Add IBC upgrade and upgrade-client gov proposals ### Bug Fixes - [829](https://github.com/umee-network/umee/pull/829) Fix `umeed tx leverage liquidate` command args diff --git a/app/app.go b/app/app.go index 982fedac64..db5b388d98 100644 --- a/app/app.go +++ b/app/app.go @@ -82,6 +82,7 @@ import ( ibctransfertypes "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ibc "github.com/cosmos/ibc-go/v2/modules/core" ibcclient "github.com/cosmos/ibc-go/v2/modules/core/02-client" + ibcclientclient "github.com/cosmos/ibc-go/v2/modules/core/02-client/client" ibcclienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" ibcporttypes "github.com/cosmos/ibc-go/v2/modules/core/05-port/types" ibchost "github.com/cosmos/ibc-go/v2/modules/core/24-host" @@ -918,6 +919,8 @@ func getGovProposalHandlers() []govclient.ProposalHandler { upgradeclient.ProposalHandler, upgradeclient.CancelProposalHandler, leverageclient.ProposalHandler, + ibcclientclient.UpdateClientProposalHandler, + ibcclientclient.UpgradeProposalHandler, } }