@@ -432,19 +432,19 @@ contract SubgraphService is
432
432
/**
433
433
* @notice Getter for the accepted thawing period range for provisions
434
434
* @dev This override ensures {ProvisionManager} uses the thawing period from the {DisputeManager}
435
- * @return min The minimum thawing period which is defined by {DisputeManager-getDisputePeriod}
436
- * @return max The maximum is unbounded
435
+ * @return The minimum thawing period which is defined by {DisputeManager-getDisputePeriod}
436
+ * @return The maximum is unbounded
437
437
*/
438
- function _getThawingPeriodRange () internal view override returns (uint64 min , uint64 max ) {
438
+ function _getThawingPeriodRange () internal view override returns (uint64 , uint64 ) {
439
439
return (_disputeManager ().getDisputePeriod (), DEFAULT_MAX_THAWING_PERIOD);
440
440
}
441
441
442
442
/**
443
443
* @notice Getter for the accepted verifier cut range for provisions
444
- * @return min The minimum verifier cut which is defined by {DisputeManager-getVerifierCut}
445
- * @return max The maximum is 100% in PPM
444
+ * @return The minimum verifier cut which is defined by {DisputeManager-getVerifierCut}
445
+ * @return The maximum is 100% in PPM
446
446
*/
447
- function _getVerifierCutRange () internal view override returns (uint32 min , uint32 max ) {
447
+ function _getVerifierCutRange () internal view override returns (uint32 , uint32 ) {
448
448
return (_disputeManager ().getVerifierCut (), DEFAULT_MAX_VERIFIER_CUT);
449
449
}
450
450
@@ -472,11 +472,9 @@ contract SubgraphService is
472
472
* Emits a {QueryFeesCollected} event.
473
473
*
474
474
* @param _signedRav Signed RAV
475
- * @return feesCollected The amount of fees collected
475
+ * @return The amount of fees collected
476
476
*/
477
- function _collectQueryFees (
478
- IGraphTallyCollector.SignedRAV memory _signedRav
479
- ) private returns (uint256 feesCollected ) {
477
+ function _collectQueryFees (IGraphTallyCollector.SignedRAV memory _signedRav ) private returns (uint256 ) {
480
478
address indexer = _signedRav.rav.serviceProvider;
481
479
482
480
// Check that collectionId (256 bits) is a valid address (160 bits)
0 commit comments