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
transfer()
Event Monitoring suggests using transfer() but External Calls warns against it.
Patterns like require(msg.sender.send(1 ether)) can also be simplified to using transfer(), as in msg.sender.transfer(1 ether).
require(msg.sender.send(1 ether))
msg.sender.transfer(1 ether)
Don't use transfer() or send().
send()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Event Monitoring suggests using
transfer()
but External Calls warns against it.The text was updated successfully, but these errors were encountered: