You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contracts/standard/arbitration/Arbitrator.sol
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,17 @@
1
-
/**
2
-
* @title Arbitrator
3
-
* @author Clément Lesaege - <clement@lesaege.com>
4
-
* Bug Bounties: This code hasn't undertaken a bug bounty program yet.
1
+
/**
2
+
* @authors: [@clesaege]
3
+
* @reviewers: [@remedcu]
4
+
* @auditors: []
5
+
* @bounties: []
6
+
* @deployments: []
5
7
*/
6
8
7
9
pragma solidity^0.4.15;
8
10
9
11
import"./Arbitrable.sol";
10
12
11
13
/** @title Arbitrator
14
+
* @author Clément Lesaege - <clement@lesaege.com>
12
15
* Arbitrator abstract contract.
13
16
* When developing arbitrator contracts we need to:
14
17
* -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).
@@ -36,6 +39,7 @@ contract Arbitrator {
36
39
37
40
/** @dev To be raised when a dispute can be appealed.
38
41
* @param _disputeID ID of the dispute.
42
+
* @param _arbitrable The contract which created the dispute.
0 commit comments