0x00000002 / rootcore

Apache License 2.0
0 stars 1 forks source link

comma must be separated from next element by space #9

Open gabriel-canaan opened 6 years ago

gabriel-canaan commented 6 years ago

rootcore/blob/master/contracts/CrowdsaleController.sol Line 196,215

 between(safeSub(startTime,PRESALE_DURATION), startTime)
between(safeSub(startTime,PRESALE_DURATION), safeAdd(startTime, DURATION))
gabriel-canaan commented 6 years ago

Solidity style encourages avoiding extraneous whitespace but suggests one after a comma,as above, for code readability.