Skip to content

Commit b3df455

Browse files
committed
chore: fmt
1 parent 441cff4 commit b3df455

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/SocketRegistry.sol

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@ import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
1313
contract SocketRegistry is ISocketRegistry, SocketRegistryStorage {
1414
/// @notice A modifier that only allows the RegistryCoordinator to call a function
1515
modifier onlySlashingRegistryCoordinator() {
16-
require(
17-
msg.sender == slashingRegistryCoordinator,
18-
OnlySlashingRegistryCoordinator()
19-
);
16+
require(msg.sender == slashingRegistryCoordinator, OnlySlashingRegistryCoordinator());
2017
_;
2118
}
2219

0 commit comments

Comments
 (0)