Skip to content

Commit c5a54b2

Browse files
committed
Increase non-signer threshold to 4k
This limit is here to keep the transaction from being able to go over the max transaction size, but investigation and calculation revealed that we can push it much higher than 300.
1 parent 494972a commit c5a54b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/ServiceNodeRewards.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ contract ServiceNodeRewards is Initializable, Ownable2StepUpgradeable, PausableU
7474
isStarted = false;
7575
totalNodes = 0;
7676
blsNonSignerThreshold = 0;
77-
blsNonSignerThresholdMax = 300;
77+
blsNonSignerThresholdMax = 4000;
7878
proofOfPossessionTag = buildTag("BLS_SIG_TRYANDINCREMENT_POP");
7979
rewardTag = buildTag("BLS_SIG_TRYANDINCREMENT_REWARD");
8080
exitTag = buildTag("BLS_SIG_TRYANDINCREMENT_EXIT");

0 commit comments

Comments
 (0)