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/test/test_bitcoin.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/test/test_bitcoin.cpp')
| -rw-r--r-- | src/test/test_bitcoin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index 98f4ed939..b7a2a854d 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -19,6 +19,7 @@ #include "ui_interface.h" #include "rpc/server.h" #include "rpc/register.h" +#include "script/sigcache.h" #include "test/testutil.h" @@ -39,6 +40,7 @@ BasicTestingSetup::BasicTestingSetup(const std::string& chainName) ECC_Start(); SetupEnvironment(); SetupNetworking(); + InitSignatureCache(); fPrintToDebugLog = false; // don't want to write to debug.log file fCheckBlockIndex = true; SelectParams(chainName); |