Commit d24a2ed9 by Manuel Araoz

fix compiler error

parent b1cb7b59
......@@ -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)
......
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