Commit eb9f88ba by Martín Triay

[TokenVesting] Remove unused variable

parent aa431dfb
...@@ -56,7 +56,6 @@ contract TokenVesting is Ownable { ...@@ -56,7 +56,6 @@ contract TokenVesting is Ownable {
* @param token ERC20 token which is being vested * @param token ERC20 token which is being vested
*/ */
function release(ERC20Basic token) public { function release(ERC20Basic token) public {
uint256 vested = vestedAmount(token);
uint256 unreleased = releasableAmount(token); uint256 unreleased = releasableAmount(token);
require(unreleased > 0); require(unreleased > 0);
......
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