Update documentation for strict address literals

This commit is contained in:
Alex Beregszaszi 2018-06-13 00:59:23 +01:00
parent 3ee3018bf6
commit b7ad97610f

View File

@ -496,7 +496,7 @@ high or low invalid bids.
if (value <= highestBid) { if (value <= highestBid) {
return false; return false;
} }
if (highestBidder != 0) { if (highestBidder != address(0)) {
// Refund the previously highest bidder. // Refund the previously highest bidder.
pendingReturns[highestBidder] += highestBid; pendingReturns[highestBidder] += highestBid;
} }