Skip to content

Commit

Permalink
fix(arbitrator): space typos
Browse files Browse the repository at this point in the history
  • Loading branch information
n1c01a5 authored Jan 9, 2019
1 parent 7958a73 commit 61cf84c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/standard/arbitration/Arbitrator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import "./Arbitrable.sol";
* When developing arbitrator contracts we need to:
* -Define the functions for dispute creation (createDispute) and appeal (appeal). Don't forget to store the arbitrated contract and the disputeID (which should be unique, use nbDisputes).
* -Define the functions for cost display (arbitrationCost and appealCost).
* -Allow giving rulings. For this a function must call arbitrable.rule(disputeID,ruling).
* -Allow giving rulings. For this a function must call arbitrable.rule(disputeID, ruling).
*/
contract Arbitrator{
contract Arbitrator {

enum DisputeStatus {Waiting, Appealable, Solved}

Expand Down

0 comments on commit 61cf84c

Please sign in to comment.