Skip to content

Commit 28d91e0

Browse files
committed
Added clarifying comment.
1 parent 05e47a4 commit 28d91e0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

contracts/crowdsale/price/IncreasingPriceCrowdsale.sol

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ contract IncreasingPriceCrowdsale is TimedCrowdsale {
2727
_finalRate = finalRate;
2828
}
2929

30+
/**
31+
* The base rate function is overridden to revert, since this crowdsale doens't use it, and
32+
* all calls to it are a mistake.
33+
*/
3034
function rate() public view returns(uint256) {
3135
revert();
3236
}

0 commit comments

Comments
 (0)