From e8bdf35b9d73d03bb3db2ae12e73d42c7c569a0d Mon Sep 17 00:00:00 2001 From: Raul Date: Thu, 14 Nov 2024 13:12:27 -0300 Subject: [PATCH] lint --- contracts/src/protocol/IPTokenStaking.sol | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contracts/src/protocol/IPTokenStaking.sol b/contracts/src/protocol/IPTokenStaking.sol index 1cb328f6..332ece25 100644 --- a/contracts/src/protocol/IPTokenStaking.sol +++ b/contracts/src/protocol/IPTokenStaking.sol @@ -156,7 +156,9 @@ contract IPTokenStaking is IIPTokenStaking, Ownable2StepUpgradeable, ReentrancyG /// @notice Removes current operator for a delegator. /// @param uncmpPubkey 65 bytes uncompressed secp256k1 public key. - function unsetOperator(bytes calldata uncmpPubkey) external verifyUncmpPubkeyWithExpectedAddress(uncmpPubkey, msg.sender) { + function unsetOperator( + bytes calldata uncmpPubkey + ) external verifyUncmpPubkeyWithExpectedAddress(uncmpPubkey, msg.sender) { emit UnsetOperator(uncmpPubkey); }