Skip to content

Commit

Permalink
fix: Make amountOfChoices public
Browse files Browse the repository at this point in the history
  • Loading branch information
eccentricexit committed Aug 2, 2018
1 parent d0aae62 commit a0ba69c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/standard/arbitration/TwoPartyArbitrable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import "./Arbitrable.sol";
*/
contract TwoPartyArbitrable is Arbitrable {
uint public timeout; // Time in second a party can take before being considered unresponding and lose the dispute.
uint8 amountOfChoices;
uint8 public amountOfChoices;
address public partyA;
address public partyB;
uint public partyAFee; // Total fees paid by the partyA.
Expand Down

0 comments on commit a0ba69c

Please sign in to comment.