We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 222b7d0 + 8a0ca5e commit 462fbcdCopy full SHA for 462fbcd
src/init.cpp
@@ -1256,7 +1256,7 @@ bool AppInitMain(NodeContext& node)
1256
InitSignatureCache();
1257
InitScriptExecutionCache();
1258
1259
- LogPrintf("Using %u threads for script verification\n", nScriptCheckThreads);
+ LogPrintf("Script verification uses %d additional threads\n", std::max(nScriptCheckThreads - 1, 0));
1260
if (nScriptCheckThreads) {
1261
for (int i=0; i<nScriptCheckThreads-1; i++)
1262
threadGroup.create_thread([i]() { return ThreadScriptCheck(i); });
0 commit comments