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
Maybe we should add anonymous structs and messages? Sometimes it is needed to send message only one time - and there is no need to generate abi, docs etc. for it.
Possible syntax
message(0xd53276db) {
value: Int as coins;
query_id: Int as uint64;
} my_msg = {query_id: 0}
or even in C-style
message(0xd53276db) {
value: Int as coins;
query_id: Int as uint64;
} my_msg = {0, 0}
The text was updated successfully, but these errors were encountered:
Maybe we should add anonymous structs and messages? Sometimes it is needed to send message only one time - and there is no need to generate abi, docs etc. for it.
Possible syntax
or even in C-style
The text was updated successfully, but these errors were encountered: