Skip to content

Commit e195b74

Browse files
committed
refactor: review changes
1 parent c572efb commit e195b74

File tree

2 files changed

+59
-59
lines changed

2 files changed

+59
-59
lines changed

src/contracts/interfaces/IRewardsCoordinator.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -461,18 +461,18 @@ interface IRewardsCoordinator is IRewardsCoordinatorErrors, IRewardsCoordinatorE
461461
* @notice Creates a new operator-directed rewards submission for an operator set, to be split amongst the operators and
462462
* set of stakers delegated to operators who are part of the operator set.
463463
* @param operatorSet The operator set for which the rewards are being submitted
464-
* @param performanceRewardsSubmissions The operator-directed rewards submissions being created
464+
* @param operatorDirectedRewardsSubmissions The operator-directed rewards submissions being created
465465
* @dev Expected to be called by the AVS that created the operator set
466466
* @dev The duration of the `rewardsSubmission` cannot exceed `MAX_REWARDS_DURATION`
467467
* @dev The tokens are sent to the `RewardsCoordinator` contract
468-
* @dev The `RewardsCoordinator` contract needs a token approval of sum of all `operatorRewards` in the `performanceRewardsSubmissions`, before calling this function
468+
* @dev The `RewardsCoordinator` contract needs a token approval of sum of all `operatorRewards` in the `operatorDirectedRewardsSubmissions`, before calling this function
469469
* @dev Strategies must be in ascending order of addresses to check for duplicates
470470
* @dev Operators must be in ascending order of addresses to check for duplicates
471-
* @dev This function will revert if the `performanceRewardsSubmissions` is malformed
471+
* @dev This function will revert if the `operatorDirectedRewardsSubmissions` is malformed
472472
*/
473473
function createOperatorDirectedOperatorSetRewardsSubmission(
474474
OperatorSet calldata operatorSet,
475-
OperatorDirectedRewardsSubmission[] calldata performanceRewardsSubmissions
475+
OperatorDirectedRewardsSubmission[] calldata operatorDirectedRewardsSubmissions
476476
) external;
477477

478478
/**

0 commit comments

Comments
 (0)