Skip to content

Commit

Permalink
Update v6-to-v7.md (#3283)
Browse files Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
faddat and mergify[bot] committed Mar 13, 2023
1 parent 102854a commit e6c48c1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/migrations/v6-to-v7.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following to the function call to the upgrade handler in `app/app.go`, t
```go
import (
// ...
ibctmmigrations "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint/migrations"
ibctmmigrations "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint/migrations"
)

// ...
Expand Down Expand Up @@ -54,7 +54,7 @@ To register the tendermint client, modify the `app.go` file to include the tende
```diff
import (
// ...
+ ibctm "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint"
+ ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"
)

// ...
Expand All @@ -76,7 +76,7 @@ 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/v7/modules/light-clients/06-solomachine"
)

// ...
Expand Down Expand Up @@ -274,8 +274,8 @@ IBC module constants have been moved from the `host` package to the `exported` p
```diff
import (
// ...
- host "github.com/cosmos/ibc-go/v6/modules/core/24-host"
+ ibcexported "github.com/cosmos/ibc-go/v6/modules/core/exported"
- host "github.com/cosmos/ibc-go/v7/modules/core/24-host"
+ ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
// ...
)

Expand Down

0 comments on commit e6c48c1

Please sign in to comment.