From 3eb7b58343741df9105f8df5f14147925fc512e7 Mon Sep 17 00:00:00 2001 From: pr0n00gler Date: Mon, 13 Jan 2025 16:35:58 +0200 Subject: [PATCH] deps fixes --- app/app.go | 4 ---- app/proposals_allowlisting.go | 2 -- 2 files changed, 6 deletions(-) diff --git a/app/app.go b/app/app.go index 0772f0f59..f3c6b4f7a 100644 --- a/app/app.go +++ b/app/app.go @@ -1583,8 +1583,6 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino paramsKeeper.Subspace(icacontrollertypes.SubModuleName).WithKeyTable(icacontrollertypes.ParamKeyTable()) paramsKeeper.Subspace(icahosttypes.SubModuleName).WithKeyTable(icahosttypes.ParamKeyTable()) - paramsKeeper.Subspace(pfmtypes.ModuleName).WithKeyTable(pfmtypes.ParamKeyTable()) - paramsKeeper.Subspace(globalfee.ModuleName).WithKeyTable(globalfeetypes.ParamKeyTable()) paramsKeeper.Subspace(ccvconsumertypes.ModuleName).WithKeyTable(ccv.ParamKeyTable()) @@ -1676,7 +1674,6 @@ func (app *App) WireICS20PreWasmKeeper( app.keys[pfmtypes.StoreKey], app.TransferKeeper.Keeper, // set later app.IBCKeeper.ChannelKeeper, - app.FeeBurnerKeeper, &app.BankKeeper, app.IBCKeeper.ChannelKeeper, authtypes.NewModuleAddress(adminmoduletypes.ModuleName).String(), @@ -1731,7 +1728,6 @@ func (app *App) WireICS20PreWasmKeeper( app.PFMKeeper, 0, pfmkeeper.DefaultForwardTransferPacketTimeoutTimestamp, - pfmkeeper.DefaultRefundTransferPacketTimeoutTimestamp, ) ibcStack = gmpmiddleware.NewIBCMiddleware(ibcStack) diff --git a/app/proposals_allowlisting.go b/app/proposals_allowlisting.go index 646f9d890..860c756a1 100644 --- a/app/proposals_allowlisting.go +++ b/app/proposals_allowlisting.go @@ -11,7 +11,6 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" "github.com/cosmos/cosmos-sdk/x/params/types/proposal" - pfmtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8/packetforward/types" icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types" ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck @@ -84,7 +83,6 @@ func isSdkMessageWhitelisted(msg sdk.Msg) bool { *banktypes.MsgUpdateParams, *crisistypes.MsgUpdateParams, *minttypes.MsgUpdateParams, - *pfmtypes.MsgUpdateParams, *marketmaptypes.MsgCreateMarkets, *marketmaptypes.MsgUpdateMarkets, *marketmaptypes.MsgRemoveMarketAuthorities,