addressed TokenVesting contstructor natspec updates in #742 (#935)

This commit is contained in:
Doug Crescenzi
2018-05-29 12:45:40 -04:00
committed by Leo Arias
parent 746673a94f
commit d5f06ab32f

View File

@ -39,6 +39,7 @@ contract TokenVesting is Ownable {
* of the balance will have vested. * of the balance will have vested.
* @param _beneficiary address of the beneficiary to whom vested tokens are transferred * @param _beneficiary address of the beneficiary to whom vested tokens are transferred
* @param _cliff duration in seconds of the cliff in which tokens will begin to vest * @param _cliff duration in seconds of the cliff in which tokens will begin to vest
* @param _start the time (as Unix time) at which point vesting starts
* @param _duration duration in seconds of the period in which the tokens will vest * @param _duration duration in seconds of the period in which the tokens will vest
* @param _revocable whether the vesting is revocable or not * @param _revocable whether the vesting is revocable or not
*/ */