Unify code comments style. (#1603)
* Updated code style to no more than120 characters per line. * Unify code comments style with Doxygen-style tags.
This commit is contained in:
committed by
Francisco Giordano
parent
a09cf147ea
commit
1fd993bc01
@ -12,9 +12,9 @@ import "../math/SafeMath.sol";
|
||||
*/
|
||||
contract TokenVesting is Ownable {
|
||||
// The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is
|
||||
// therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore,
|
||||
// it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a cliff
|
||||
// period of a year and a duration of four years, are safe to use.
|
||||
// therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree).Therefore,
|
||||
// it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a
|
||||
// cliff period of a year and a duration of four years, are safe to use.
|
||||
// solhint-disable not-rely-on-time
|
||||
|
||||
using SafeMath for uint256;
|
||||
|
||||
Reference in New Issue
Block a user