Skip to content

Commit

Permalink
fix(t2cr): should not require challenger fee stake to already be paid
Browse files Browse the repository at this point in the history
  • Loading branch information
eccentricexit committed Nov 22, 2018
1 parent d0ecc94 commit 5a9ae34
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions contracts/standard/permission/ArbitrableTokenList.sol
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,6 @@ contract ArbitrableTokenList is PermissionInterface, Arbitrable {
msg.value >= request.challengeReward + round.requiredFeeStake,
"Not enough ETH."
);
require(
round.paidFeeStake[uint(Party.Challenger)] >= round.requiredFeeStake && request.challengeRewardBalance == request.challengeReward,
"There is already funded pending challenge request"
);

request.parties[uint(Party.Challenger)] = msg.sender;
request.challengeRewardBalance += request.challengeReward;
Expand Down

0 comments on commit 5a9ae34

Please sign in to comment.