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
checks-effects-interactions
https://docs.soliditylang.org/en/develop/security-considerations.html#use-the-checks-effects-interactions-pattern
I think it should be possible to write a detector for it? Since it maps nicely:
if
assert
&mut self
*Ref::method
build_call
especially the last two are most important but also easiest to detect (🤞)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://docs.soliditylang.org/en/develop/security-considerations.html#use-the-checks-effects-interactions-pattern
I think it should be possible to write a detector for it? Since it maps nicely:
if
,assert
, etc&mut self
methods)*Ref::method
orbuild_call
especially the last two are most important but also easiest to detect (🤞)
The text was updated successfully, but these errors were encountered: