Skip to content

Commit e8d1c91

Browse files
committed
docs: natspec
1 parent 970089d commit e8d1c91

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/interfaces/IBLSSignatureChecker.sol

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ import {IStakeRegistry, IDelegationManager} from "./IStakeRegistry.sol";
88
import {BN254} from "../libraries/BN254.sol";
99

1010
interface IBLSSignatureCheckerErrors {
11-
/// @dev Thrown when the caller is not the registry coordinator owner.
11+
/// @notice Thrown when the caller is not the registry coordinator owner.
1212
error OnlyRegistryCoordinatorOwner();
13-
/// @dev Thrown when the quorum numbers input in is empty.
13+
/// @notice Thrown when the quorum numbers input in is empty.
1414
error InputEmptyQuorumNumbers();
15-
/// @dev Thrown when two array parameters have mismatching lengths.
15+
/// @notice Thrown when two array parameters have mismatching lengths.
1616
error InputArrayLengthMismatch();
17-
/// @dev Thrown when the non-signer pubkey length does not match non-signer bitmap indices length.
17+
/// @notice Thrown when the non-signer pubkey length does not match non-signer bitmap indices length.
1818
error InputNonSignerLengthMismatch();
19-
/// @dev Thrown when the reference block number is invalid.
19+
/// @notice Thrown when the reference block number is invalid.
2020
error InvalidReferenceBlocknumber();
21-
/// @dev Thrown when the non signer pubkeys are not sorted.
21+
/// @notice Thrown when the non signer pubkeys are not sorted.
2222
error NonSignerPubkeysNotSorted();
23-
/// @dev Thrown when StakeRegistry updates have not been updated within withdrawalDelayBlocks window
23+
/// @notice Thrown when StakeRegistry updates have not been updated within withdrawalDelayBlocks window
2424
error StaleStakesForbidden();
25-
/// @dev Thrown when the quorum apk hash in storage does not match provided quorum apk.
25+
/// @notice Thrown when the quorum apk hash in storage does not match provided quorum apk.
2626
error InvalidQuorumApkHash();
27-
/// @dev Thrown when BLS pairing precompile call fails.
27+
/// @notice Thrown when BLS pairing precompile call fails.
2828
error InvalidBLSPairingKey();
29-
/// @dev Thrown when BLS signature is invalid.
29+
/// @notice Thrown when BLS signature is invalid.
3030
error InvalidBLSSignature();
3131
}
3232

0 commit comments

Comments
 (0)