Skip to content

Commit

Permalink
Merge branch 'main' into damian/fix-solomachine-panic
Browse files Browse the repository at this point in the history
  • Loading branch information
damiannolan authored May 16, 2024
2 parents 56021bd + 6ba52c5 commit cc5362c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
branches:
- main
paths:
- './docs'
- 'docs/**'
- '.github/workflows/check-docs.yml'

jobs:
check-docs-build:
Expand All @@ -20,8 +21,9 @@ jobs:
with:
node-version: 18
cache: npm
cache-dependency-path: docs/package-lock.json

- name: Install dependencies
run: npm ci
run: cd docs && npm ci
- name: Test build website
run: npm run build
run: cd docs && npm run build
4 changes: 2 additions & 2 deletions .github/workflows/wasm-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
matrix:
go-arch: ['amd64', 'arm64']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
Expand All @@ -47,7 +47,7 @@ jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
Expand Down
2 changes: 1 addition & 1 deletion docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const config = {
path: "v8",
banner: "none",
},
"v7.4.x": {
"v7.5.x": {
path: "v7",
banner: "none",
},
Expand Down
4 changes: 2 additions & 2 deletions modules/core/05-port/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,6 @@ func (k *Keeper) LookupModuleByPort(ctx sdk.Context, portID string) (string, *ca

// Route returns a IBCModule for a given module, and a boolean indicating
// whether or not the route is present.
func (k *Keeper) Route(clientID string) (types.IBCModule, bool) {
return k.Router.GetRoute(clientID)
func (k *Keeper) Route(module string) (types.IBCModule, bool) {
return k.Router.GetRoute(module)
}

0 comments on commit cc5362c

Please sign in to comment.