Skip to content

Commit

Permalink
import custom pfm into app.go (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
RustNinja committed May 21, 2024
1 parent fca383d commit 0188208
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ import (
ibcclientclient "github.com/cosmos/ibc-go/v7/modules/core/02-client/client"
ibchost "github.com/cosmos/ibc-go/v7/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper"
custompfm "github.com/notional-labs/composable/v6/custom/custompfm/keeper"
customibctransfer "github.com/notional-labs/composable/v6/custom/ibc-transfer"
customstaking "github.com/notional-labs/composable/v6/custom/staking"
"github.com/spf13/cast"
Expand Down Expand Up @@ -339,6 +340,7 @@ func NewComposableApp(
enabledProposals,
)

custompfm.NewIBCMiddleware()

Check failure on line 343 in app/app.go

View workflow job for this annotation

GitHub Actions / build

not enough arguments in call to custompfm.NewIBCMiddleware
// transferModule := transfer.NewAppModule(app.TransferKeeper)
transferModule := customibctransfer.NewAppModule(appCodec, app.TransferKeeper, app.BankKeeper)
routerModule := router.NewAppModule(app.RouterKeeper)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package packetforward
package keeper

import (
"time"
Expand Down

0 comments on commit 0188208

Please sign in to comment.