Skip to content

Commit 37a8135

Browse files
committed
chore: forge fmt + tweak docstrings
1 parent ae1a928 commit 37a8135

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/SocketRegistry.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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) {

src/SocketRegistryStorage.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/interfaces/ISlashingRegistryCoordinator.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)