Unverified Commit 9be77ddd by Francisco Giordano Committed by GitHub

Merge pull request #469 from nedodn/patch-2

Update TokenTimelock.sol: Issue #464
parents 70a17d0b 27f8609a
......@@ -30,15 +30,6 @@ contract TokenTimelock {
/**
* @notice Transfers tokens held by timelock to beneficiary.
* Deprecated: please use TokenTimelock#release instead.
*/
function claim() public {
require(msg.sender == beneficiary);
release();
}
/**
* @notice Transfers tokens held by timelock to beneficiary.
*/
function release() public {
require(now >= releaseTime);
......
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