Skip to content

Commit

Permalink
chore: comment update
Browse files Browse the repository at this point in the history
  • Loading branch information
ypatil12 committed Nov 6, 2024
1 parent 9c4e34f commit b42fdda
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/contracts/core/RewardsCoordinator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ contract RewardsCoordinator is
}

/// @inheritdoc IRewardsCoordinator
// TODO: stakers can still use this function, no way to introspect that caller is an AVS. Need to add storage in ALM if an avs exists
function setClaimerFor(address earner, address claimer) external checkCanCall(earner) {
_setClaimer(earner, claimer);
}
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/interfaces/IRewardsCoordinator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ interface IRewardsCoordinator is IRewardsCoordinatorErrors, IRewardsCoordinatorE
* @notice Sets the address of the entity that can call `processClaim` on behalf of an earner
* @param earner The address to set the claimer for
* @param claimer The address of the entity that can call `processClaim` on behalf of the earner
* @dev Only callable by an address that configures the claimer
* @dev Only callable by an address that has delegated account permissions
*/
function setClaimerFor(address earner, address claimer) external;

Expand Down

0 comments on commit b42fdda

Please sign in to comment.