We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If someone needs to manually process all input messages, they would need to do it in the following manner:
contract MyContract { fun rcvWithoutOpcode(msg: Slice) { dump(42) } receive(msg: Slice) { // load opcode from `msg` first rcvWithoutOpcode(msg); } bounced(msg: Slice) { rcvWithoutOpcode(msg) } }
Mention also msg in the bounced receiver won't have the 0xFFFFFFFF opcode.
msg
0xFFFFFFFF
This should be linked where the docs mention the receivers' priorities:
The text was updated successfully, but these errors were encountered:
novusnota
No branches or pull requests
If someone needs to manually process all input messages, they would need to do it in the following manner:
Mention also
msg
in the bounced receiver won't have the0xFFFFFFFF
opcode.This should be linked where the docs mention the receivers' priorities:
The text was updated successfully, but these errors were encountered: