Skip to content

Commit

Permalink
fix(t2cr): remove require since it is enforce in parent contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
eccentricexit committed Oct 29, 2018
1 parent 692540b commit c5f48b7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion contracts/standard/permission/ArbitrableTokenList.sol
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,6 @@ contract ArbitrableTokenList is MultiPartyInsurableArbitrableAgreementsBase {
*/
function executeAgreementRuling(bytes32 _agreementID, uint _ruling) internal {
super.executeAgreementRuling(_agreementID, _ruling);
require(_ruling <= 2, "Ruling must be valid");
Agreement storage agreement = agreements[_agreementID];
PaidFees storage _paidFees = paidFees[_agreementID];
Item storage item = items[agreementIDToItemID[_agreementID]];
Expand Down

0 comments on commit c5f48b7

Please sign in to comment.