Skip to content

Commit 3929db6

Browse files
colin-axnerfedekunzecwgoesAdityaSripal
authored
Modify IBC client governance unfreezing to reflect ADR changes (cosmos#8405)
* update proto files * make proto-gen * update clienttypes * update localhost and solo machine * refactor tm client proposal handling * copy metadata * self review fixes * update 02-client keeper tests * fix 02-client type tests * fix localhost and solomachine tests * begin updating tm tests * partially fix tm tests * increase codecov * add more tests * add changelog * update specs * add docs * fix test * modify adr * allow modified chain-ids * add CLI command * fix typos * fix lint * Apply suggestions from code review Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * update docs, rm example * Update docs/ibc/proposals.md Co-authored-by: Christopher Goes <cwgoes@pluranimity.org> * update height checks to reflect chain-id changes cc @AdityaSripal * Apply suggestions from code review Co-authored-by: Christopher Goes <cwgoes@pluranimity.org> * Apply suggestions from code review Co-authored-by: Aditya <adityasripal@gmail.com> * address most of @AdityaSripal suggestions * update docs per review suggestions * Update x/ibc/core/02-client/types/proposal.go * add proposal handler * register proposal type * register proposal on codec * fix routing Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> Co-authored-by: Christopher Goes <cwgoes@pluranimity.org> Co-authored-by: Aditya <adityasripal@gmail.com>
1 parent a9986b1 commit 3929db6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ import (
6969
ibctransfertypes "github.com/cosmos/cosmos-sdk/x/ibc/applications/transfer/types"
7070
ibc "github.com/cosmos/cosmos-sdk/x/ibc/core"
7171
ibcclient "github.com/cosmos/cosmos-sdk/x/ibc/core/02-client"
72+
ibcclienttypes "github.com/cosmos/cosmos-sdk/x/ibc/core/02-client/types"
7273
porttypes "github.com/cosmos/cosmos-sdk/x/ibc/core/05-port/types"
7374
ibchost "github.com/cosmos/cosmos-sdk/x/ibc/core/24-host"
7475
ibckeeper "github.com/cosmos/cosmos-sdk/x/ibc/core/keeper"
@@ -309,7 +310,7 @@ func NewSimApp(
309310
AddRoute(paramproposal.RouterKey, params.NewParamChangeProposalHandler(app.ParamsKeeper)).
310311
AddRoute(distrtypes.RouterKey, distr.NewCommunityPoolSpendProposalHandler(app.DistrKeeper)).
311312
AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(app.UpgradeKeeper)).
312-
AddRoute(ibchost.RouterKey, ibcclient.NewClientUpdateProposalHandler(app.IBCKeeper.ClientKeeper))
313+
AddRoute(ibcclienttypes.RouterKey, ibcclient.NewClientUpdateProposalHandler(app.IBCKeeper.ClientKeeper))
313314
app.GovKeeper = govkeeper.NewKeeper(
314315
appCodec, keys[govtypes.StoreKey], app.GetSubspace(govtypes.ModuleName), app.AccountKeeper, app.BankKeeper,
315316
&stakingKeeper, govRouter,

0 commit comments

Comments
 (0)