Skip to content

Commit

Permalink
fix(t2cr): missing assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
eccentricexit committed Nov 25, 2018
1 parent 183f15f commit 01454c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/standard/permission/ArbitrableTokenList.sol
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ contract ArbitrableTokenList is PermissionInterface, Arbitrable {
Party winner = round.ruling == RulingOption.Accept ? Party.Requester : Party.Challenger;
if (round.paidFees[uint(winner)] > 0) {
uint totalContributed = contributionsToRequester + contributionsToChallenger;
totalContributed * round.contributions[msg.sender][uint(winner)] / round.paidFees[uint(winner)];
reward = totalContributed * round.contributions[msg.sender][uint(winner)] / round.paidFees[uint(winner)];
}
}

Expand Down

0 comments on commit 01454c0

Please sign in to comment.