Browse Source

Use uint256 in TokenTimeLock contract

AugustoL 7 years ago
parent
commit
f446f5c5cd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      contracts/token/TokenTimelock.sol

+ 2 - 2
contracts/token/TokenTimelock.sol

@@ -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;