Commit 74636b73 by Martín Triay

[TokenVesting] Use SafeMath

parent 647fc139
......@@ -47,7 +47,7 @@ contract TokenVesting is Ownable {
beneficiary = _beneficiary;
revocable = _revocable;
duration = _duration;
cliff = _start + _cliff;
cliff = _start.add(_cliff);
start = _start;
}
......
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