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
SendParameters
Summary Check dangerous patterns in the mode field of SendParameters.
mode
Context tact-lang/tact#180
Examples
SendParameters{ ... mode: SendRemainingValue + SendRemainingValue, ... }
Should raise a warning:
The text was updated successfully, but these errors were encountered:
Additional idea: maybe we could leverage the Tact interpreter to reason about possible problems of mode values (depends on #70)
Sorry, something went wrong.
the mode expression should only contain the + sign;
actually it's recommended to use the binary or | operator instead of +: tact-lang/tact#180 (comment)
|
+
SuspiciousMessageMode
Esorat
Successfully merging a pull request may close this issue.
Summary
Check dangerous patterns in the
mode
field ofSendParameters
.Context
tact-lang/tact#180
Examples
Should raise a warning:
The text was updated successfully, but these errors were encountered: