remove outdated comments
This commit is contained in:
parent
989bc9846e
commit
edd6d6d4d2
|
@ -219,7 +219,6 @@ contract ValidationPools is Reputation, Forum {
|
|||
s = pool.stakes[i];
|
||||
if (votePasses != s.inFavor) {
|
||||
// Losing stake
|
||||
// If this stake is from the minted fee, don't burn it
|
||||
uint amount = (s.amount * pool.params.bindingPercent) / 100;
|
||||
if (pool.params.redistributeLosingStakes) {
|
||||
_update(s.sender, address(this), amount);
|
||||
|
@ -250,7 +249,6 @@ contract ValidationPools is Reputation, Forum {
|
|||
pool.params.redistributeLosingStakes && votePasses == s.inFavor
|
||||
) {
|
||||
// Winning stake
|
||||
// If this stake is from the minted fee, always redistribute it to the winners
|
||||
uint reward = (((totalRewards * s.amount) / amountFromWinners) *
|
||||
pool.params.bindingPercent) / 100;
|
||||
totalAllocated += reward;
|
||||
|
|
Loading…
Reference in New Issue