Skip to content

chore: missing docstrings (OZ N-08) #1154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: horizon-oz2/n03-unused-code
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { LinkedList } from "../../libraries/LinkedList.sol";
* bugs. We may have an active bug bounty program.
*/
abstract contract DataServiceFeesV1Storage {
/// @notice The amount of tokens locked in stake claims for each service provider
mapping(address serviceProvider => uint256 tokens) public feesProvisionTracker;

/// @notice List of all locked stake claims to be released to service providers
Expand Down
4 changes: 2 additions & 2 deletions packages/subgraph-service/contracts/DisputeManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ contract DisputeManager is

// -- Constants --

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

// Minimum value for dispute deposit
/// @notice Minimum value for dispute deposit
uint256 public constant MIN_DISPUTE_DEPOSIT = 1e18; // 1 GRT

// -- Modifiers --
Expand Down