@@ -8,25 +8,25 @@ import {IStakeRegistry, IDelegationManager} from "./IStakeRegistry.sol";
8
8
import {BN254} from "../libraries/BN254.sol " ;
9
9
10
10
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.
12
12
error OnlyRegistryCoordinatorOwner ();
13
- /// @dev Thrown when the quorum numbers input in is empty.
13
+ /// @notice Thrown when the quorum numbers input in is empty.
14
14
error InputEmptyQuorumNumbers ();
15
- /// @dev Thrown when two array parameters have mismatching lengths.
15
+ /// @notice Thrown when two array parameters have mismatching lengths.
16
16
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.
18
18
error InputNonSignerLengthMismatch ();
19
- /// @dev Thrown when the reference block number is invalid.
19
+ /// @notice Thrown when the reference block number is invalid.
20
20
error InvalidReferenceBlocknumber ();
21
- /// @dev Thrown when the non signer pubkeys are not sorted.
21
+ /// @notice Thrown when the non signer pubkeys are not sorted.
22
22
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
24
24
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.
26
26
error InvalidQuorumApkHash ();
27
- /// @dev Thrown when BLS pairing precompile call fails.
27
+ /// @notice Thrown when BLS pairing precompile call fails.
28
28
error InvalidBLSPairingKey ();
29
- /// @dev Thrown when BLS signature is invalid.
29
+ /// @notice Thrown when BLS signature is invalid.
30
30
error InvalidBLSSignature ();
31
31
}
32
32
0 commit comments