Browse Source

fix compiler error

Manuel Araoz 8 years ago
parent
commit
d24a2ed9a8
1 changed files with 3 additions and 2 deletions
  1. 3 2
      contracts/token/VestedToken.sol

+ 3 - 2
contracts/token/VestedToken.sol

@@ -73,8 +73,9 @@ contract VestedToken is StandardToken {
   }
 
   function vestedTokens(TokenGrant grant, uint64 time) private constant returns (uint256) {
-    return calculateVestedTokens(grant.value,
-      uint256(time)
+    return calculateVestedTokens(
+      grant.value,
+      uint256(time),
       uint256(grant.start),
       uint256(grant.cliff),
       uint256(grant.vesting)