Skip to content

Commit 5243843

Browse files
committed
Rewrite accumDistribution tables for better readability
Puts the same quantity of values on each line
1 parent 3da511f commit 5243843

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

contracts/LifMarketValidationMechanism.sol

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -138,17 +138,19 @@ contract LifMarketValidationMechanism is Ownable {
138138
// the 100% remaining can be claimed by the foundation. Values multipled by 10^5
139139

140140
uint256[24] memory accumDistribution24 = [
141-
uint256(0), 18, 117, 351, 767, 1407, 2309,3511, 5047, 6952, 9257
142-
,11995, 15196, 18889, 23104, 27870, 33215, 39166, 45749
143-
,52992, 60921, 69561, 78938, 89076
141+
uint256(0), 18, 117, 351, 767, 1407,
142+
2309, 3511, 5047, 6952, 9257, 11995,
143+
15196, 18889, 23104, 27870, 33215, 39166,
144+
45749, 52992, 60921, 69561, 78938, 89076
144145
];
145146

146147
uint256[48] memory accumDistribution48 = [
147-
uint256(0), 3, 18, 54, 117, 214, 351, 534, 767, 1056, 1406, 1822
148-
,2308, 2869, 3510, 4234, 5046, 5950, 6950, 8051, 9256, 10569
149-
,11994, 13535, 15195, 16978, 18888, 20929, 23104, 25416, 27870
150-
,30468, 33214, 36112, 39165, 42376, 45749, 49286, 52992, 56869
151-
,60921, 65150, 69560, 74155, 78937, 83909, 89075, 94438
148+
uint256(0), 3, 18, 54, 117, 214, 351, 534,
149+
767, 1056, 1406, 1822, 2308, 2869, 3510, 4234,
150+
5046, 5950, 6950, 8051, 9256, 10569, 11994, 13535,
151+
15195, 16978, 18888, 20929, 23104, 25416, 27870, 30468,
152+
33214, 36112, 39165, 42376, 45749, 49286, 52992, 56869,
153+
60921, 65150, 69560, 74155, 78937, 83909, 89075, 94438
152154
];
153155

154156
for (uint8 i = 0; i < totalPeriods; i++) {

0 commit comments

Comments
 (0)