Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

import custom pfm into app.go #517

Merged
merged 2 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package app

Check failure on line 1 in app/app.go

View workflow job for this annotation

GitHub Actions / lint

: # github.com/notional-labs/composable/v6/app

import (
"fmt"
Expand Down Expand Up @@ -88,6 +88,7 @@
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 @@
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

Check failure on line 343 in app/app.go

View workflow job for this annotation

GitHub Actions / test

not enough arguments in call to custompfm.NewIBCMiddleware

Check failure on line 343 in app/app.go

View workflow job for this annotation

GitHub Actions / lint

not enough arguments in call to custompfm.NewIBCMiddleware

Check failure on line 343 in app/app.go

View workflow job for this annotation

GitHub Actions / lint

not enough arguments in call to custompfm.NewIBCMiddleware

Check failure on line 343 in app/app.go

View workflow job for this annotation

GitHub Actions / lint

not enough arguments in call to custompfm.NewIBCMiddleware

Check failure on line 343 in app/app.go

View workflow job for this annotation

GitHub Actions / Analyze

not enough arguments in call to 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
Loading