Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contracts/MTF.sol
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ contract MTF is MintableToken, Ownable {
// Receiver3 2.0% 0x733bc7201261aC3c9508D20a811D99179304240a
mint(0x733bc7201261aC3c9508D20a811D99179304240a, toDistribute.mul(2).div(100));

// Receiver4 8.0% 0x4b6716bd349dC65d07152844ed4990C2077cF1a7
mint(0x4b6716bd349dC65d07152844ed4990C2077cF1a7, toDistribute.mul(8).div(100));
// Receiver4 18.0% 0x4b6716bd349dC65d07152844ed4990C2077cF1a7
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is not sufficient, as ICO token distribution part should be decreased from 60% to 50%. It's required to update line 70 toDistribute variable value to reflect this change.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And unit tests must be updated accordingly, they will fail after recent changes.

mint(0x4b6716bd349dC65d07152844ed4990C2077cF1a7, toDistribute.mul(18).div(100));

// Receiver5 6% 0xEf628A29668C00d5C7C4D915F07188dC96cF24eb
uint256 part5 = toDistribute.mul(6).div(400);
Expand Down