diff --git a/ethereum/contracts/core/ValidationPools.sol b/ethereum/contracts/core/ValidationPools.sol index c947627..a602bea 100644 --- a/ethereum/contracts/core/ValidationPools.sol +++ b/ethereum/contracts/core/ValidationPools.sol @@ -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;