diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2016-12-14 17:48:56 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2016-12-14 18:14:02 -0800 |
commit | b83264d9c7a8ddb79f64bd9540caddc8632ef31f (patch) | |
tree | 75628523862f0d8a75c7cdf5259fdeb41d5cfa42 /src/init.cpp | |
parent | b68685a16a81729f4d10975171c23c407cd332e3 (diff) | |
parent | 67dac4e1937b9835d2c09402d35e0050467fbc6d (diff) |
Merge #8895: Better SigCache Implementation
67dac4e Add unit tests for the CuckooCache (Jeremy Rubin)
c9e69fb Add CuckooCache implementation and replace the sigcache map_type with it (Jeremy Rubin)
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 71971a7642..73f885a1bb 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1103,6 +1103,8 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler) LogPrintf("Using config file %s\n", GetConfigFile(GetArg("-conf", BITCOIN_CONF_FILENAME)).string()); LogPrintf("Using at most %i connections (%i file descriptors available)\n", nMaxConnections, nFD); + InitSignatureCache(); + LogPrintf("Using %u threads for script verification\n", nScriptCheckThreads); if (nScriptCheckThreads) { for (int i=0; i<nScriptCheckThreads-1; i++) |