Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramarti committed Nov 22, 2024
1 parent fba113d commit 2295fde
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contracts/src/protocol/IPTokenStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 2295fde

Please sign in to comment.