Skip to content

Commit

Permalink
update NatSpec comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabasco committed Feb 8, 2024
1 parent c20aaca commit 27a6b99
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions contracts/interfaces/ISSVClusters.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,14 @@ interface ISSVClusters is ISSVNetworkCore {
Cluster memory cluster
) external;

/// @notice Bulk removes an set of existing validators in the same cluster from the SSV Network
/// @notice Removes an existing validator from the SSV Network
/// @param publicKey The public key of the validator to be removed
/// @param operatorIds Array of IDs of operators managing the validator
/// @param cluster Cluster associated with the validator
function removeValidator(bytes calldata publicKey, uint64[] memory operatorIds, Cluster memory cluster) external;

/// @notice Removes an existing validator set from the SSV Network
/// @notice Bulk removes a set of existing validators in the same cluster from the SSV Network
/// @notice Reverts if publicKeys contains duplicates or non-existent validators
/// @param publicKeys The public keys of the validators to be removed
/// @param operatorIds Array of IDs of operators managing the validator
/// @param cluster Cluster associated with the validator
Expand Down

0 comments on commit 27a6b99

Please sign in to comment.