diff options
| author | Jeremy Rubin <[email protected]> | 2016-10-05 16:58:47 -0400 |
|---|---|---|
| committer | Jeremy Rubin <[email protected]> | 2016-12-14 16:02:05 -0500 |
| commit | c9e69fbf3915fe1187b4c2e77be5ae6b16121194 (patch) | |
| tree | 44f74b2355ce7c2618be7c2ba60c4fecbbfd4776 /src/init.cpp | |
| parent | RPC: importmulti: Avoid using boost::variant::operator!=, which is only in ne... (diff) | |
| download | discoin-c9e69fbf3915fe1187b4c2e77be5ae6b16121194.tar.xz discoin-c9e69fbf3915fe1187b4c2e77be5ae6b16121194.zip | |
Add CuckooCache implementation and replace the sigcache map_type with it
SQUASHME: Change cuckoocache to only work for powers of two, to avoid mod operator
SQUASHME: Update Documentation and simplify logarithm logic
SQUASHME: OSX Build Errors
SQUASHME: minor Feedback from sipa + bluematt
SQUASHME: DOCONLY: Clarify a few comments.
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 d3efc9f97..1a500792a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1070,6 +1070,8 @@ bool AppInit2(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++) |