Commit f446f5c5 by AugustoL

Use uint256 in TokenTimeLock contract

parent 207b92f6
...@@ -19,9 +19,9 @@ contract TokenTimelock { ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment