Merge pull request #7 from decanus/patch-2

Update Meritocracy.sol
This commit is contained in:
Richard Ramos 2019-04-09 10:38:03 -04:00 committed by GitHub
commit 06c4b4018f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ contract Meritocracy {
uint256 individualAmount = _amount / registry.length;
// removing decimals
individualAmount = (individualAmount / 1000000000000000000 * 1000000000000000000);
individualAmount = (individualAmount / 1 ether * 1 ether);
uint amount = individualAmount * registry.length;
@ -338,4 +338,4 @@ contract Meritocracy {
// previousMeritocracy = Meritocracy(_previousMeritocracy);
// importPreviousMeritocracyData() TODO
}
}
}