Skip to content

Commit fe1dd7c

Browse files
authored
Merge pull request #314 from remedcu/master
RAB Pragma and Comment Updates to Arbitration Standard Contracts
2 parents e7020ee + 8b70f50 commit fe1dd7c

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
lines changed

contracts/standard/arbitration/Arbitrable.sol

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
/**
2-
* @title Arbitrable
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: []
57
*/
68

79
pragma solidity ^0.4.15;
810

911
import "./IArbitrable.sol";
1012

1113
/** @title Arbitrable
14+
* @author Clément Lesaege - <clement@lesaege.com>
1215
* Arbitrable abstract contract.
1316
* When developing arbitrable contracts, we need to:
1417
* -Define the action taken when a ruling is received by the contract. We should do so in executeRuling.

contracts/standard/arbitration/Arbitrator.sol

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff 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: []
57
*/
68

79
pragma solidity ^0.4.15;
810

911
import "./Arbitrable.sol";
1012

1113
/** @title Arbitrator
14+
* @author Clément Lesaege - <clement@lesaege.com>
1215
* Arbitrator abstract contract.
1316
* When developing arbitrator contracts we need to:
1417
* -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 {
3639

3740
/** @dev To be raised when a dispute can be appealed.
3841
* @param _disputeID ID of the dispute.
42+
* @param _arbitrable The contract which created the dispute.
3943
*/
4044
event AppealPossible(uint indexed _disputeID, Arbitrable indexed _arbitrable);
4145

contracts/standard/arbitration/IArbitrable.sol

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
/**
2-
* @title IArbitrable
3-
* @author Enrique Piqueras - <enrique@kleros.io>
4-
* Bug Bounties: This code hasn't undertaken a bug bounty program yet.
1+
/**
2+
* @authors: [@epiqueras]
3+
* @reviewers: [@remedcu]
4+
* @auditors: []
5+
* @bounties: []
6+
* @deployments: []
57
*/
68

79
pragma solidity ^0.4.15;
810

911
import "./Arbitrator.sol";
1012

1113
/** @title IArbitrable
14+
* @author Enrique Piqueras - <enrique@kleros.io>
1215
* Arbitrable interface.
1316
* When developing arbitrable contracts, we need to:
1417
* -Define the action taken when a ruling is received by the contract. We should do so in executeRuling.

0 commit comments

Comments
 (0)