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 {
2121 ISlashingRegistryCoordinator _slashingRegistryCoordinator
2222 ) SocketRegistryStorage (address (_slashingRegistryCoordinator)) {}
2323
24- /// @notice sets the socket for an operator only callable by the SlashingRegistryCoordinator
24+ /// @inheritdoc ISocketRegistry
2525 function setOperatorSocket (
2626 bytes32 _operatorId ,
2727 string memory _socket
2828 ) external onlySlashingRegistryCoordinator {
2929 operatorIdToSocket[_operatorId] = _socket;
3030 }
3131
32- /// @notice gets the stored socket for an operator
32+ /// @inheritdoc ISocketRegistry
3333 function getOperatorSocket (
3434 bytes32 _operatorId
3535 ) external view returns (string memory ) {
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ abstract contract SocketRegistryStorage is ISocketRegistry {
1313 * CONSTANTS AND IMMUTABLES
1414 *
1515 */
16-
16+
1717 /// @notice The address of the SlashingRegistryCoordinator
1818 address public immutable slashingRegistryCoordinator;
19-
19+
2020 /**
2121 *
2222 * STATE
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ interface ISlashingRegistryCoordinator is
232232 * @dev This is only relevant for Slashing AVSs
233233 */
234234 function allocationManager () external view returns (IAllocationManager);
235-
235+
236236 /**
237237 * @notice Reference to the SocketRegistry contract.
238238 * @return The SocketRegistry contract interface.
You can’t perform that action at this time.
0 commit comments