Skip to content

Commit

Permalink
Update v6-to-v7.md (backport #3283) (#3284)
Browse files Browse the repository at this point in the history
* Update v6-to-v7.md (#3283)

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
(cherry picked from commit e6c48c1)

# Conflicts:
#	docs/migrations/v6-to-v7.md

* resolving conflicts

---------

Co-authored-by: Jacob Gadikian <jacobgadikian@gmail.com>
Co-authored-by: Damian Nolan <damiannolan@gmail.com>
  • Loading branch information
3 people authored Mar 13, 2023
1 parent 5aade8f commit 4c1bd19
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/migrations/v6-to-v7.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ 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 @@ -52,8 +52,8 @@ 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 @@ -74,8 +74,8 @@ 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 @@ -273,10 +273,10 @@ 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"
// ...
)

- host.ModuleName
Expand Down

0 comments on commit 4c1bd19

Please sign in to comment.