From d5f06ab32ff40bf447fa34bcdb997b54e2499ee0 Mon Sep 17 00:00:00 2001 From: Doug Crescenzi Date: Tue, 29 May 2018 12:45:40 -0400 Subject: [PATCH] addressed TokenVesting contstructor natspec updates in #742 (#935) --- contracts/token/ERC20/TokenVesting.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/token/ERC20/TokenVesting.sol b/contracts/token/ERC20/TokenVesting.sol index 9c2c4efe5..d078ba998 100644 --- a/contracts/token/ERC20/TokenVesting.sol +++ b/contracts/token/ERC20/TokenVesting.sol @@ -39,6 +39,7 @@ contract TokenVesting is Ownable { * of the balance will have vested. * @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 _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 _revocable whether the vesting is revocable or not */