File tree 2 files changed +3
-2
lines changed
horizon/contracts/data-service/extensions
subgraph-service/contracts
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import { LinkedList } from "../../libraries/LinkedList.sol";
11
11
* bugs. We may have an active bug bounty program.
12
12
*/
13
13
abstract contract DataServiceFeesV1Storage {
14
+ /// @notice The amount of tokens locked in stake claims for each service provider
14
15
mapping (address serviceProvider = > uint256 tokens ) public feesProvisionTracker;
15
16
16
17
/// @notice List of all locked stake claims to be released to service providers
Original file line number Diff line number Diff line change @@ -54,10 +54,10 @@ contract DisputeManager is
54
54
55
55
// -- Constants --
56
56
57
- // Maximum value for fisherman reward cut in PPM
57
+ /// @notice Maximum value for fisherman reward cut in PPM
58
58
uint32 public constant MAX_FISHERMAN_REWARD_CUT = 500000 ; // 50%
59
59
60
- // Minimum value for dispute deposit
60
+ /// @notice Minimum value for dispute deposit
61
61
uint256 public constant MIN_DISPUTE_DEPOSIT = 1e18 ; // 1 GRT
62
62
63
63
// -- Modifiers --
You can’t perform that action at this time.
0 commit comments