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
== false
0x0x0x
Negation(!) is a better optimized implementation of applying == false. It requires less gas and also the recommended approach to compute the negation.
In other words: x == false and !x compute the same result, but !x costs less gas.
x == false
!x
./Auction.sol:37: require(auctionOngoing == false, 'ongoing auction'); ./Basket.sol:92: require(auction.auctionOngoing() == false); ./Basket.sol:109: require(auction.auctionOngoing() == false); ./Basket.sol:221: if (auction.auctionOngoing() == false) { ./Basket.sol:259: require(auction.auctionOngoing() == false);
The text was updated successfully, but these errors were encountered:
0x0x0x issue #138
2ba1e12
No branches or pull requests
Handle
0x0x0x
Vulnerability details
Concept
Negation(!) is a better optimized implementation of applying
== false
. It requires less gas and also the recommended approach to compute the negation.In other words:
x == false
and!x
compute the same result, but!x
costs less gas.Scope
The text was updated successfully, but these errors were encountered: