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

feat: add AppModuleBasic for solo machine client #2826

Merged
merged 8 commits into from
Nov 29, 2022
Prev Previous commit
Next Next commit
chore: fix indentation
  • Loading branch information
colin-axner committed Nov 29, 2022
commit 8cf86ea6355e4b7625ee8bc7bb0bda28d9e76bee
14 changes: 7 additions & 7 deletions docs/migrations/v6-to-v7.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ To register the solo machine client, modify the `app.go` file to include the sol

```diff
import (
...
+ solomachine "github.com/cosmos/ibc-go/v6/modules/light-clients/06-solomachine"
...
...
+ solomachine "github.com/cosmos/ibc-go/v6/modules/light-clients/06-solomachine"
...
)
...
ModuleBasics = module.NewBasicManager(
...
ibc.AppModuleBasic{},
+ solomachine.AppModuleBasic{},
...
...
ibc.AppModuleBasic{},
+ solomachine.AppModuleBasic{},
...
)
```

Expand Down