Skip to content

Commit 1a772f1

Browse files
committed
chore: missing docstrings (OZ N-08)
Signed-off-by: Tomás Migone <[email protected]>
1 parent a19ecb1 commit 1a772f1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/horizon/contracts/data-service/extensions/DataServiceFeesStorage.sol

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { LinkedList } from "../../libraries/LinkedList.sol";
1111
* bugs. We may have an active bug bounty program.
1212
*/
1313
abstract contract DataServiceFeesV1Storage {
14+
/// @notice The amount of tokens locked in stake claims for each service provider
1415
mapping(address serviceProvider => uint256 tokens) public feesProvisionTracker;
1516

1617
/// @notice List of all locked stake claims to be released to service providers

packages/subgraph-service/contracts/DisputeManager.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ contract DisputeManager is
5454

5555
// -- Constants --
5656

57-
// Maximum value for fisherman reward cut in PPM
57+
/// @notice Maximum value for fisherman reward cut in PPM
5858
uint32 public constant MAX_FISHERMAN_REWARD_CUT = 500000; // 50%
5959

60-
// Minimum value for dispute deposit
60+
/// @notice Minimum value for dispute deposit
6161
uint256 public constant MIN_DISPUTE_DEPOSIT = 1e18; // 1 GRT
6262

6363
// -- Modifiers --

0 commit comments

Comments
 (0)