Skip to content

Commit 9f7ab37

Browse files
committed
Starts foundation vested payment at same time that MVM ends
1 parent 3b0470f commit 9f7ab37

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

contracts/LifCrowdsale.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,8 @@ contract LifCrowdsale is Ownable, Pausable {
330330
foundersVestedPayment.transferOwnership(foundersWallet);
331331

332332
// create the vested payment schedule for the foundation
333-
uint256 foundationPaymentStart = foundationMonthsStart.mul(30 days);
333+
uint256 foundationPaymentStart = foundationMonthsStart.mul(30 days)
334+
.add(30 days);
334335
foundationVestedPayment = new VestedPayment(
335336
block.timestamp.add(foundationPaymentStart), 30 days,
336337
foundationMonthsStart, 0, foundationTokens, token

0 commit comments

Comments
 (0)