Skip to content

Commit cce18c5

Browse files
committed
chore(protocol-contracts): group events
1 parent 3b8b78a commit cce18c5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

protocol-contracts/staking/contracts/OperatorRewarder.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ contract OperatorRewarder is Ownable {
4848
/// @notice Emitted when the fee is updated.
4949
event FeeUpdated(uint16 oldFee, uint16 newFee);
5050

51+
/// @notice Emitted when an address is authorized to claim rewards on behalf of the receiver address.
52+
event ClaimerAuthorized(address receiver, address claimer);
53+
5154
/// @notice Error for invalid claimer address.
5255
error InvalidClaimer(address claimer);
5356

5457
/// @notice Emitted when the claimer for the receiver address is already set.
5558
error ClaimerAlreadySet(address receiver, address claimer);
5659

57-
/// @notice Emitted when an address is authorized to claim rewards on behalf of the receiver address.
58-
event ClaimerAuthorized(address receiver, address claimer);
59-
6060
/// @notice Emitted when an address is not authorized to claim rewards on behalf of the receiver address.
6161
error ClaimerNotAuthorized(address receiver, address claimer);
6262

0 commit comments

Comments
 (0)