Update documentation for strict address literals

This commit is contained in:
Alex Beregszaszi
2018-06-25 16:17:50 +02:00
parent 3ee3018bf6
commit b7ad97610f
+1 -1
View File
@@ -496,7 +496,7 @@ high or low invalid bids.
if (value <= highestBid) {
return false;
}
if (highestBidder != 0) {
if (highestBidder != address(0)) {
// Refund the previously highest bidder.
pendingReturns[highestBidder] += highestBid;
}