Skip to content

Commit

Permalink
Update TokenTimelock.sol: Issue #464
Browse files Browse the repository at this point in the history
Removed deprecated function claim() as per Issue #464.
  • Loading branch information
nedodn authored Sep 27, 2017
1 parent 5cf5036 commit 27f8609
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions contracts/token/TokenTimelock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,6 @@ contract TokenTimelock {
releaseTime = _releaseTime;
}

/**
* @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.
*/
Expand Down

0 comments on commit 27f8609

Please # to comment.