Merge pull request #624 from AugustoL/change-uint-tokentimelock
Use uint256 in TokenTimeLock contract
This commit is contained in:
@ -19,9 +19,9 @@ contract TokenTimelock {
|
|||||||
address public beneficiary;
|
address public beneficiary;
|
||||||
|
|
||||||
// timestamp when token release is enabled
|
// timestamp when token release is enabled
|
||||||
uint64 public releaseTime;
|
uint256 public releaseTime;
|
||||||
|
|
||||||
function TokenTimelock(ERC20Basic _token, address _beneficiary, uint64 _releaseTime) public {
|
function TokenTimelock(ERC20Basic _token, address _beneficiary, uint256 _releaseTime) public {
|
||||||
require(_releaseTime > now);
|
require(_releaseTime > now);
|
||||||
token = _token;
|
token = _token;
|
||||||
beneficiary = _beneficiary;
|
beneficiary = _beneficiary;
|
||||||
|
|||||||
Reference in New Issue
Block a user