Skip to content

Commit

Permalink
fix(multiple-arbitrable-transaction): public vars
Browse files Browse the repository at this point in the history
  • Loading branch information
0xferit committed Dec 15, 2018
1 parent 47973ee commit ce5fdb2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ contract MultipleArbitrableTransaction {
}

Transaction[] public transactions;
bytes arbitratorExtraData;
Arbitrator arbitrator;
uint timeoutFee; // Time in seconds a party can take to pay arbitration fees before being considered unresponding and lose the dispute.
bytes public arbitratorExtraData;
Arbitrator public arbitrator;
uint public timeoutFee; // Time in seconds a party can take to pay arbitration fees before being considered unresponding and lose the dispute.

mapping (uint => uint) public disputeID;

Expand Down

0 comments on commit ce5fdb2

Please sign in to comment.