bid amount: comment vs code
pauliax opened this issue · 2 comments
pauliax commented
// Check that the incoming bid is higher than the current
// price
uint256 price = _currentPrice(auction);
require(_bidAmount >= price);
The comment says that the bid should be higher, however, the code also allows equal value, so please either refactor the code or update the comment.