Skip to content

Commit 43ed80d

Browse files
committed
fix: increased "max amount of threads" for bls check from 31 to 33
Blocks could have 0, 2 or 32 commitments currently; further benchmarking is needed to find a point where is a balance point, but likely it's somewhere between 32 and 64; because each quorum commitment have 2 BLS signatures
1 parent 2d4fe1b commit 43ed80d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llmq/options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ enum class QvvecSyncMode {
2525
};
2626

2727
/** Maximum number of dedicated script-checking threads allowed */
28-
static const int MAX_BLSCHECK_THREADS = 31;
28+
static const int MAX_BLSCHECK_THREADS = 33;
2929
/** -parbls default (number of bls-checking threads, 0 = auto) */
3030
static const int DEFAULT_BLSCHECK_THREADS = 0;
3131

0 commit comments

Comments
 (0)