Browse Source

[TokenVesting] Remove unused variable

Martín Triay 8 years ago
parent
commit
eb9f88bafc
1 changed files with 0 additions and 1 deletions
  1. 0 1
      contracts/token/TokenVesting.sol

+ 0 - 1
contracts/token/TokenVesting.sol

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