File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff 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
2222import (
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
5454import (
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
7676import (
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
275275import (
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
You can’t perform that action at this time.
0 commit comments