File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
packages/subgraph-service/contracts Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ contract DisputeManager is
290
290
}
291
291
292
292
/// @inheritdoc IDisputeManager
293
- function getVerifierCut () external view override returns (uint32 ) {
293
+ function getFishermanRewardCut () external view override returns (uint32 ) {
294
294
return fishermanRewardCut;
295
295
}
296
296
Original file line number Diff line number Diff line change @@ -441,11 +441,11 @@ contract SubgraphService is
441
441
442
442
/**
443
443
* @notice Getter for the accepted verifier cut range for provisions
444
- * @return The minimum verifier cut which is defined by {DisputeManager-getVerifierCut }
444
+ * @return The minimum verifier cut which is defined by the fisherman reward cut {DisputeManager-getFishermanRewardCut }
445
445
* @return The maximum is 100% in PPM
446
446
*/
447
447
function _getVerifierCutRange () internal view override returns (uint32 , uint32 ) {
448
- return (_disputeManager ().getVerifierCut (), DEFAULT_MAX_VERIFIER_CUT);
448
+ return (_disputeManager ().getFishermanRewardCut (), DEFAULT_MAX_VERIFIER_CUT);
449
449
}
450
450
451
451
/**
Original file line number Diff line number Diff line change @@ -498,10 +498,10 @@ interface IDisputeManager {
498
498
// -- Getters --
499
499
500
500
/**
501
- * @notice Get the verifier cut.
502
- * @return Verifier cut in percentage (ppm)
501
+ * @notice Get the fisherman reward cut.
502
+ * @return Fisherman reward cut in percentage (ppm)
503
503
*/
504
- function getVerifierCut () external view returns (uint32 );
504
+ function getFishermanRewardCut () external view returns (uint32 );
505
505
506
506
/**
507
507
* @notice Get the dispute period.
You can’t perform that action at this time.
0 commit comments