diff options
| author | Pieter Wuille <[email protected]> | 2016-12-14 17:48:56 -0800 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-12-14 18:14:02 -0800 |
| commit | b83264d9c7a8ddb79f64bd9540caddc8632ef31f (patch) | |
| tree | 75628523862f0d8a75c7cdf5259fdeb41d5cfa42 /src/test/test_bitcoin.cpp | |
| parent | Merge #9273: Remove unused CDiskBlockPos* argument from ProcessNewBlock (diff) | |
| parent | Add unit tests for the CuckooCache (diff) | |
| download | discoin-b83264d9c7a8ddb79f64bd9540caddc8632ef31f.tar.xz discoin-b83264d9c7a8ddb79f64bd9540caddc8632ef31f.zip | |
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.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index dc459bed0..2a5a78de0 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); |