Skip to content

Commit

Permalink
Merge pull request #493 from CosmWasm/remove-deprecated-symbols
Browse files Browse the repository at this point in the history
Remove SubcallResult/SubcallResponse
  • Loading branch information
webmaster128 authored Jan 11, 2024
2 parents b13b35b + 644ac2d commit 7c6ae28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 2 additions & 0 deletions docs/MIGRATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
6 changes: 0 additions & 6 deletions types/submessages.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7c6ae28

Please sign in to comment.