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/src/arbitration/KlerosGovernor.sol
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -303,7 +303,7 @@ contract KlerosGovernor is IArbitrableV2 {
303
303
// Check in case arbitration cost increased after the submission. It's unlikely that its increase won't be covered by the base deposit, but technically possible.
/// @param _externalDisputeID Unique identifier for this dispute outside Kleros. It's the submitter responsibility to submit the right evidence group ID.
61
+
/// @param _arbitratorDisputeID The identifier of the dispute in the Arbitrator contract.
Copy file name to clipboardExpand all lines: contracts/src/arbitration/evidence/ModeratedEvidenceModule.sol
+4-9Lines changed: 4 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -72,12 +72,12 @@ contract ModeratedEvidenceModule is IArbitrableV2 {
72
72
73
73
/// @notice To be raised when a moderated evidence is submitted. Should point to the resource (evidences are not to be stored on chain due to gas considerations).
74
74
/// @param _arbitrator The arbitrator of the contract.
75
-
/// @param _externalDisputeID Unique identifier for this dispute outside Kleros. It's the submitter responsibility to submit the right evidence group ID.
75
+
/// @param _arbitratorDisputeID The identifier of the dispute in the Arbitrator contract.
76
76
/// @param _party The address of the party submiting the evidence. Note that 0x0 refers to evidence not submitted by any party.
Copy file name to clipboardExpand all lines: contracts/src/arbitration/interfaces/IEvidence.sol
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,8 @@ pragma solidity >=0.8.0 <0.9.0;
5
5
/// @title IEvidence
6
6
interfaceIEvidence {
7
7
/// @notice To be raised when evidence is submitted. Should point to the resource (evidences are not to be stored on chain due to gas considerations).
8
-
/// @param _externalDisputeID Unique identifier for this dispute outside Kleros. It's the submitter responsibility to submit the right external dispute ID.
8
+
/// @param _arbitratorDisputeID The identifier of the dispute in the Arbitrator contract.
9
9
/// @param _party The address of the party submitting the evidence.
0 commit comments