aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_bitcoin.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2016-12-14 17:48:56 -0800
committerPieter Wuille <pieter.wuille@gmail.com>2016-12-14 18:14:02 -0800
commitb83264d9c7a8ddb79f64bd9540caddc8632ef31f (patch)
tree75628523862f0d8a75c7cdf5259fdeb41d5cfa42 /src/test/test_bitcoin.cpp
parentb68685a16a81729f4d10975171c23c407cd332e3 (diff)
parent67dac4e1937b9835d2c09402d35e0050467fbc6d (diff)
downloadbitcoin-b83264d9c7a8ddb79f64bd9540caddc8632ef31f.tar.xz
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/test/test_bitcoin.cpp')
-rw-r--r--src/test/test_bitcoin.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp
index dc459bed0d..2a5a78de02 100644
--- a/src/test/test_bitcoin.cpp
+++ b/src/test/test_bitcoin.cpp
@@ -20,6 +20,7 @@
#include "ui_interface.h"
#include "rpc/server.h"
#include "rpc/register.h"
+#include "script/sigcache.h"
#include "test/testutil.h"
@@ -40,6 +41,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);