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
Hi,
I have noticed that the Response struct in the Contract Semantics document still includes the submessages field but does not have the events field, while in the source code of CosmWasm std 1.2.6 version, the submessages field has been removed and the events field has been added. new Response code
Is the document outdated or I miss something?
The text was updated successfully, but these errors were encountered:
Yes, that is outdated (though it doesn't matter much for the semantics). submessages is now messages and events was added.
Feel free to open a PR for this.
On another note, it looks like the "append to a default event" link also rotted. At the time, it was pointing here and looks like in the latest code, that functionality is living here
Hi,
I have noticed that the
Response
struct in the Contract Semantics document still includes thesubmessages
field but does not have theevents
field, while in the source code of CosmWasm std1.2.6
version, the submessages field has been removed and the events field has been added. new Response codeIs the document outdated or I miss something?
The text was updated successfully, but these errors were encountered: