Skip to content

Commit 1de63cc

Browse files
committed
Merge branch 'main' into dependabot/go_modules/github.com/skip-mev/slinky-1.1.0
2 parents 7624aff + 59a440d commit 1de63cc

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

app/app.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1583,8 +1583,6 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino
15831583
paramsKeeper.Subspace(icacontrollertypes.SubModuleName).WithKeyTable(icacontrollertypes.ParamKeyTable())
15841584
paramsKeeper.Subspace(icahosttypes.SubModuleName).WithKeyTable(icahosttypes.ParamKeyTable())
15851585

1586-
paramsKeeper.Subspace(pfmtypes.ModuleName).WithKeyTable(pfmtypes.ParamKeyTable())
1587-
15881586
paramsKeeper.Subspace(globalfee.ModuleName).WithKeyTable(globalfeetypes.ParamKeyTable())
15891587

15901588
paramsKeeper.Subspace(ccvconsumertypes.ModuleName).WithKeyTable(ccv.ParamKeyTable())
@@ -1676,7 +1674,6 @@ func (app *App) WireICS20PreWasmKeeper(
16761674
app.keys[pfmtypes.StoreKey],
16771675
app.TransferKeeper.Keeper, // set later
16781676
app.IBCKeeper.ChannelKeeper,
1679-
app.FeeBurnerKeeper,
16801677
&app.BankKeeper,
16811678
app.IBCKeeper.ChannelKeeper,
16821679
authtypes.NewModuleAddress(adminmoduletypes.ModuleName).String(),
@@ -1731,7 +1728,6 @@ func (app *App) WireICS20PreWasmKeeper(
17311728
app.PFMKeeper,
17321729
0,
17331730
pfmkeeper.DefaultForwardTransferPacketTimeoutTimestamp,
1734-
pfmkeeper.DefaultRefundTransferPacketTimeoutTimestamp,
17351731
)
17361732

17371733
ibcStack = gmpmiddleware.NewIBCMiddleware(ibcStack)

app/proposals_allowlisting.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
1212
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
1313
"github.com/cosmos/cosmos-sdk/x/params/types/proposal"
14-
pfmtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8/packetforward/types"
1514
icahosttypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/types"
1615
ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"
1716
ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck
@@ -84,7 +83,6 @@ func isSdkMessageWhitelisted(msg sdk.Msg) bool {
8483
*banktypes.MsgUpdateParams,
8584
*crisistypes.MsgUpdateParams,
8685
*minttypes.MsgUpdateParams,
87-
*pfmtypes.MsgUpdateParams,
8886
*marketmaptypes.MsgCreateMarkets,
8987
*marketmaptypes.MsgUpdateMarkets,
9088
*marketmaptypes.MsgRemoveMarketAuthorities,

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ require (
2323
github.com/cosmos/cosmos-proto v1.0.0-beta.5
2424
github.com/cosmos/cosmos-sdk v0.50.11
2525
github.com/cosmos/gogoproto v1.7.0
26-
github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.0.2
26+
github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.1.0
2727
github.com/cosmos/ibc-go/modules/capability v1.0.1
2828
github.com/cosmos/ibc-go/v8 v8.5.2
2929
github.com/cosmos/ics23/go v0.11.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,8 @@ github.com/cosmos/gogoproto v1.7.0 h1:79USr0oyXAbxg3rspGh/m4SWNyoz/GLaAh0QlCe2fr
369369
github.com/cosmos/gogoproto v1.7.0/go.mod h1:yWChEv5IUEYURQasfyBW5ffkMHR/90hiHgbNgrtp4j0=
370370
github.com/cosmos/iavl v1.2.0 h1:kVxTmjTh4k0Dh1VNL046v6BXqKziqMDzxo93oh3kOfM=
371371
github.com/cosmos/iavl v1.2.0/go.mod h1:HidWWLVAtODJqFD6Hbne2Y0q3SdxByJepHUOeoH4LiI=
372-
github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.0.2 h1:dyLNlDElY6+5zW/BT/dO/3Ad9FpQblfh+9dQpYQodbA=
373-
github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.0.2/go.mod h1:82hPO/tRawbuFad2gPwChvpZ0JEIoNi91LwVneAYCeM=
372+
github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.1.0 h1:EDUzjx04MXaRPsyhrKm3m/mCdtru/JHsTBnMvMG+1aM=
373+
github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.1.0/go.mod h1:8sbOclBgOCgBPesufd3ZlLRHvJ3dOeN9+dXhn3KbKOc=
374374
github.com/cosmos/ibc-go/modules/apps/callbacks v0.2.1-0.20231113120333-342c00b0f8bd h1:Lx+/5dZ/nN6qPXP2Ofog6u1fmlkCFA1ElcOconnofEM=
375375
github.com/cosmos/ibc-go/modules/apps/callbacks v0.2.1-0.20231113120333-342c00b0f8bd/go.mod h1:JWfpWVKJKiKtd53/KbRoKfxWl8FsT2GPcNezTOk0o5Q=
376376
github.com/cosmos/ibc-go/modules/capability v1.0.1 h1:ibwhrpJ3SftEEZRxCRkH0fQZ9svjthrX2+oXdZvzgGI=

0 commit comments

Comments
 (0)