You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/migrations/v7-to-v8.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,29 @@ There are four sections based on the four potential user groups of this document
14
14
15
15
## Chains
16
16
17
+
The type of the `PortKeeper` field of the IBC keeper have been changed to `*portkeeper.Keeper`:
18
+
19
+
```diff
20
+
// Keeper defines each ICS keeper for IBC
21
+
type Keeper struct {
22
+
// implements gRPC QueryServer interface
23
+
types.QueryServer
24
+
25
+
cdc codec.BinaryCodec
26
+
27
+
ClientKeeper clientkeeper.Keeper
28
+
ConnectionKeeper connectionkeeper.Keeper
29
+
ChannelKeeper channelkeeper.Keeper
30
+
- PortKeeper portkeeper.Keeper
31
+
+ PortKeeper *portkeeper.Keeper
32
+
Router *porttypes.Router
33
+
34
+
authority string
35
+
}
36
+
```
37
+
38
+
See [this PR](https://github.com/cosmos/ibc-go/pull/4703/files#diff-d18972debee5e64f16e40807b2ae112ddbe609504a93ea5e1c80a5d489c3a08a) for the changes required in `app.go`.
39
+
17
40
TODO: https://github.com/cosmos/ibc-go/pull/3505 (extra parameter added to transfer's `GenesisState`)
18
41
19
42
- You must pass the `authority` to the icahost keeper. ([#3520](https://github.com/cosmos/ibc-go/pull/3520)) See [diff](https://github.com/cosmos/ibc-go/pull/3520/files#diff-d18972debee5e64f16e40807b2ae112ddbe609504a93ea5e1c80a5d489c3a08a).
0 commit comments