Skip to content

Commit 4c1bd19

Browse files
mergify[bot]faddatdamiannolan
authored
Update v6-to-v7.md (backport #3283) (#3284)
* 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>
1 parent 5aade8f commit 4c1bd19

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/migrations/v6-to-v7.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Add the following to the function call to the upgrade handler in `app/app.go`, t
2020

2121
```go
2222
import (
23-
// ...
24-
ibctmmigrations "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint/migrations"
23+
// ...
24+
ibctmmigrations "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint/migrations"
2525
)
2626

2727
// ...
@@ -52,8 +52,8 @@ To register the tendermint client, modify the `app.go` file to include the tende
5252

5353
```diff
5454
import (
55-
// ...
56-
+ ibctm "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint"
55+
// ...
56+
+ ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"
5757
)
5858

5959
// ...
@@ -74,8 +74,8 @@ To register the solo machine client, modify the `app.go` file to include the sol
7474

7575
```diff
7676
import (
77-
// ...
78-
+ solomachine "github.com/cosmos/ibc-go/v6/modules/light-clients/06-solomachine"
77+
// ...
78+
+ solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine"
7979
)
8080

8181
// ...
@@ -273,10 +273,10 @@ IBC module constants have been moved from the `host` package to the `exported` p
273273

274274
```diff
275275
import (
276-
// ...
277-
- host "github.com/cosmos/ibc-go/v6/modules/core/24-host"
278-
+ ibcexported "github.com/cosmos/ibc-go/v6/modules/core/exported"
279-
// ...
276+
// ...
277+
- host "github.com/cosmos/ibc-go/v7/modules/core/24-host"
278+
+ ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
279+
// ...
280280
)
281281

282282
- host.ModuleName

0 commit comments

Comments
 (0)