Skip to content

Commit b38dd0c

Browse files
committed
docs: inherited natspec
1 parent cca96fc commit b38dd0c

File tree

2 files changed

+2
-18
lines changed

2 files changed

+2
-18
lines changed

contracts/src/arbitration/dispute-kits/DisputeKitGated.sol

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,7 @@ contract DisputeKitGated is DisputeKitClassicBase, UUPSProxiable {
100100
// * Internal * //
101101
// ************************************* //
102102

103-
/// @dev Checks that the chosen address satisfies certain conditions for being drawn.
104-
/// Note that we don't check the minStake requirement here because of the implicit staking in parent courts.
105-
/// minStake is checked directly during staking process however it's possible for the juror to get drawn
106-
/// while having < minStake if it is later increased by governance.
107-
/// This issue is expected and harmless since we check for insolvency anyway.
108-
/// @param _round The round in which the juror is being drawn.
109-
/// @param _coreDisputeID ID of the dispute in the core contract.
110-
/// @param _juror Chosen address.
111-
/// @return result Whether the address passes the check or not.
103+
/// @inheritdoc DisputeKitClassicBase
112104
function _postDrawCheck(
113105
Round storage _round,
114106
uint256 _coreDisputeID,

contracts/src/arbitration/dispute-kits/DisputeKitSybilResistant.sol

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,7 @@ contract DisputeKitSybilResistant is DisputeKitClassicBase, UUPSProxiable {
6565
// * Internal * //
6666
// ************************************* //
6767

68-
/// @dev Checks that the chosen address satisfies certain conditions for being drawn.
69-
/// Note that we don't check the minStake requirement here because of the implicit staking in parent courts.
70-
/// minStake is checked directly during staking process however it's possible for the juror to get drawn
71-
/// while having < minStake if it is later increased by governance.
72-
/// This issue is expected and harmless since we check for insolvency anyway.
73-
/// @param _round The round in which the juror is being drawn.
74-
/// @param _coreDisputeID ID of the dispute in the core contract.
75-
/// @param _juror Chosen address.
76-
/// @return result Whether the address can be drawn or not.
68+
/// @inheritdoc DisputeKitClassicBase
7769
function _postDrawCheck(
7870
Round storage _round,
7971
uint256 _coreDisputeID,

0 commit comments

Comments
 (0)