Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
adamewozniak committed Nov 10, 2023
1 parent 91cbc77 commit d4f773d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ import (
ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"
"github.com/spf13/cast"

gmp_middleware "github.com/ojo-network/ojo/app/gmp_middleware"
gmpmiddleware "github.com/ojo-network/ojo/app/gmpmiddleware"

Check failure on line 100 in app/app.go

View workflow job for this annotation

GitHub Actions / Analyze

found packages gmp_middleware (gmp_middleware.go) and gmpmiddleware (types.go) in /home/runner/work/ojo/ojo/app/gmpmiddleware

Check failure on line 100 in app/app.go

View workflow job for this annotation

GitHub Actions / Analyze

found packages gmp_middleware (gmp_middleware.go) and gmpmiddleware (types.go) in /home/runner/work/ojo/ojo/app/gmpmiddleware

Check failure on line 100 in app/app.go

View workflow job for this annotation

GitHub Actions / lint

found packages gmp_middleware (gmp_middleware.go) and gmpmiddleware (types.go) in app/gmpmiddleware (typecheck)

Check failure on line 100 in app/app.go

View workflow job for this annotation

GitHub Actions / test-unit-cover

found packages gmp_middleware (gmp_middleware.go) and gmpmiddleware (types.go) in /home/runner/work/ojo/ojo/app/gmpmiddleware

Check failure on line 100 in app/app.go

View workflow job for this annotation

GitHub Actions / test-e2e

found packages gmp_middleware (gmp_middleware.go) and gmpmiddleware (types.go) in /home/runner/work/ojo/ojo/app/gmpmiddleware

Check failure on line 100 in app/app.go

View workflow job for this annotation

GitHub Actions / test-app-non-determinism

found packages gmp_middleware (gmp_middleware.go) and gmpmiddleware (types.go) in /home/runner/work/ojo/ojo/app/gmpmiddleware
ibctransfer "github.com/ojo-network/ojo/app/ibctransfer"

"github.com/ojo-network/ojo/util/genmap"
Expand Down Expand Up @@ -528,9 +528,9 @@ func New(
// Create static IBC router, add transfer route, then set and seal it.
// We also need to add the axelar GMP middleware here.
ibcRouter := ibcporttypes.NewRouter()
ibcStack = gmp_middleware.NewIBCMiddleware(
ibcStack = gmpmiddleware.NewIBCMiddleware(
ibcStack,
gmp_middleware.NewGmpHandler(app.GmpKeeper),
gmpmiddleware.NewGmpHandler(app.GmpKeeper),
)
ibcRouter.AddRoute(ibctransfertypes.ModuleName, ibcStack)
app.IBCKeeper.SetRouter(ibcRouter)
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion app/gmp_middleware/types.go → app/gmpmiddleware/types.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package gmp_middleware
package gmpmiddleware

import (
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down

0 comments on commit d4f773d

Please sign in to comment.