diff --git a/docs/MIGRATING.md b/docs/MIGRATING.md index c423c4300..e38c54a5b 100644 --- a/docs/MIGRATING.md +++ b/docs/MIGRATING.md @@ -5,3 +5,5 @@ - `VM.Create` was removed. Use `VM.StoreCode` instead. - The `supportedCapabilities` argument in `NewVM` changed from a comma separated list to a list of type `[]string`. +- Remove `SubcallResult`/`SubcallResponse`. Use `SubMsgResult`/`SubMsgResponse` + instead. diff --git a/types/submessages.go b/types/submessages.go index 4ab39f049..93eda1808 100644 --- a/types/submessages.go +++ b/types/submessages.go @@ -84,9 +84,3 @@ type SubMsgResponse struct { Events Events `json:"events"` Data []byte `json:"data,omitempty"` } - -// Deprecated: Renamed to SubMsgResult -type SubcallResult = SubMsgResult - -// Deprecated: Renamed to SubMsgResponse -type SubcallResponse = SubMsgResponse