aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-06-22 08:48:23 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2016-06-22 08:48:37 +0200
commit961893f26e5cc27c5acdcb8447725ded0790e79a (patch)
tree62b289176966fbbf81ae3364d381da2d090d6736 /src/test
parent8ccdac1f5f77fa753f9d0d1e39cb776ed188b051 (diff)
parent3775ff9ea7e92cc1e6a0cdbb15999913d93c87e7 (diff)
downloadbitcoin-961893f26e5cc27c5acdcb8447725ded0790e79a.tar.xz
Merge #8222: Enable mempool consistency checks in unit tests
3775ff9 Enable mempool consistency checks in unit tests (Pieter Wuille)
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test_bitcoin.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp
index c68320ba8b..3dc59ddd08 100644
--- a/src/test/test_bitcoin.cpp
+++ b/src/test/test_bitcoin.cpp
@@ -55,6 +55,7 @@ TestingSetup::TestingSetup(const std::string& chainName) : BasicTestingSetup(cha
pathTemp = GetTempPath() / strprintf("test_bitcoin_%lu_%i", (unsigned long)GetTime(), (int)(GetRand(100000)));
boost::filesystem::create_directories(pathTemp);
mapArgs["-datadir"] = pathTemp.string();
+ mempool.setSanityCheck(1.0);
pblocktree = new CBlockTreeDB(1 << 20, true);
pcoinsdbview = new CCoinsViewDB(1 << 23, true);
pcoinsTip = new CCoinsViewCache(pcoinsdbview);