File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ contract SocketRegistry is SocketRegistryStorage {
21
21
ISlashingRegistryCoordinator _slashingRegistryCoordinator
22
22
) SocketRegistryStorage (address (_slashingRegistryCoordinator)) {}
23
23
24
- /// @notice sets the socket for an operator only callable by the SlashingRegistryCoordinator
24
+ /// @inheritdoc ISocketRegistry
25
25
function setOperatorSocket (
26
26
bytes32 _operatorId ,
27
27
string memory _socket
28
28
) external onlySlashingRegistryCoordinator {
29
29
operatorIdToSocket[_operatorId] = _socket;
30
30
}
31
31
32
- /// @notice gets the stored socket for an operator
32
+ /// @inheritdoc ISocketRegistry
33
33
function getOperatorSocket (
34
34
bytes32 _operatorId
35
35
) external view returns (string memory ) {
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ abstract contract SocketRegistryStorage is ISocketRegistry {
13
13
* CONSTANTS AND IMMUTABLES
14
14
*
15
15
*/
16
-
16
+
17
17
/// @notice The address of the SlashingRegistryCoordinator
18
18
address public immutable slashingRegistryCoordinator;
19
-
19
+
20
20
/**
21
21
*
22
22
* STATE
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ interface ISlashingRegistryCoordinator is
232
232
* @dev This is only relevant for Slashing AVSs
233
233
*/
234
234
function allocationManager () external view returns (IAllocationManager);
235
-
235
+
236
236
/**
237
237
* @notice Reference to the SocketRegistry contract.
238
238
* @return The SocketRegistry contract interface.
You can’t perform that action at this time.
0 commit comments