Commit 27f8609a by nedodn Committed by GitHub

Update TokenTimelock.sol: Issue #464

Removed deprecated function claim() as per Issue #464.
parent 5cf50367
...@@ -30,15 +30,6 @@ contract TokenTimelock { ...@@ -30,15 +30,6 @@ contract TokenTimelock {
/** /**
* @notice Transfers tokens held by timelock to beneficiary. * @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 { function release() public {
require(now >= releaseTime); 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