Skip to content

Commit 75ad91d

Browse files
committed
docs: complete missing natspec [L02]
1 parent 10d5f85 commit 75ad91d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

contracts/rewards/RewardsManager.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ contract RewardsManager is RewardsManagerV2Storage, GraphUpgradeable, IRewardsMa
170170
/**
171171
* @dev Tells if subgraph is in deny list
172172
* @param _subgraphDeploymentID Subgraph deployment ID to check
173+
* @return Whether the subgraph is denied for claiming rewards or not
173174
*/
174175
function isDenied(bytes32 _subgraphDeploymentID) public view override returns (bool) {
175176
return denylist[_subgraphDeploymentID] > 0;
@@ -227,6 +228,7 @@ contract RewardsManager is RewardsManagerV2Storage, GraphUpgradeable, IRewardsMa
227228

228229
/**
229230
* @dev Gets the currently accumulated rewards per signal.
231+
* @return Currently accumulated rewards per signal
230232
*/
231233
function getAccRewardsPerSignal() public view override returns (uint256) {
232234
return accRewardsPerSignal.add(getNewRewardsPerSignal());

0 commit comments

Comments
 (0)