From aa67bd18d23ed33f45bd76dc856f3a051dd1b949 Mon Sep 17 00:00:00 2001 From: Christoph Otter Date: Mon, 22 Jan 2024 16:51:02 +0100 Subject: [PATCH] Add migrating docs entry --- docs/MIGRATING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/MIGRATING.md b/docs/MIGRATING.md index c9c8fe489..1cee65f85 100644 --- a/docs/MIGRATING.md +++ b/docs/MIGRATING.md @@ -37,8 +37,9 @@ where the old name was deprecated. | `CanonicalizeAddress` | `CanonicalizeAddressFunc` | Follow [best practice for naming function types][ft] | | `GoAPI.HumanAddress` | `GoAPI.HumanizeAddress` | Perfer verbs for converters | | `GoAPI.CanonicalAddress` | `GoAPI.CanonicalizeAddress` | Perfer verbs for converters | -| `CosmosMsg.Stargate` | `Any` | The message has nothing to do with Stargate | +| `CosmosMsg.Stargate` | `CosmosMsg.Any` | The message has nothing to do with Stargate | | `StargateMsg` | `AnyMsg` | The message has nothing to do with Stargate | | `QueryResponse` | `QueryResult` | Brings consistency with the naming of the other results | +| `VoteMsg.Vote` | `VoteMsg.Option` | Brings consistency with Cosmos SDK naming | [ft]: https://stackoverflow.com/a/60073310