File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,6 @@ contract BLSSignatureChecker is IBLSSignatureChecker {
23
23
24
24
// gas cost of multiplying 2 pairings
25
25
uint256 internal constant PAIRING_EQUALITY_CHECK_GAS = 120000 ;
26
- /// @notice the duration window that the stake registry must be updated within for a specific quorum
27
- uint256 internal constant QUORUM_STAKES_UPDATE_WINDOW = 1 weeks ;
28
26
29
27
IRegistryCoordinator public immutable registryCoordinator;
30
28
IStakeRegistry public immutable stakeRegistry;
@@ -79,7 +77,7 @@ contract BLSSignatureChecker is IBLSSignatureChecker {
79
77
for (uint i = 0 ; i < quorumNumbers.length ; i++ ) {
80
78
require (
81
79
registryCoordinator.quorumUpdateBlocknumber (uint8 (quorumNumbers[i])) + delegation.withdrawalDelayBlocks () <= block .number ,
82
- "BLSSignatureChecker.checkSignatures: StakeRegistry updates must be within QUORUM_STAKES_UPDATE_WINDOW "
80
+ "BLSSignatureChecker.checkSignatures: StakeRegistry updates must be within withdrawalDelayBlocks window "
83
81
);
84
82
require (
85
83
bytes24 (nonSignerStakesAndSignature.quorumApks[i].hashG1Point ()) ==
You can’t perform that action at this time.
0 commit comments