diff options
| author | Pieter Wuille <[email protected]> | 2016-06-18 19:15:03 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-06-18 19:15:03 +0200 |
| commit | 3775ff9ea7e92cc1e6a0cdbb15999913d93c87e7 (patch) | |
| tree | 6dd47d2a05672943cdb757b68c8c1dc3c23d16eb /src/test/test_bitcoin.cpp | |
| parent | Merge #8215: [wallet] tests: Don't use floating point (diff) | |
| download | discoin-3775ff9ea7e92cc1e6a0cdbb15999913d93c87e7.tar.xz discoin-3775ff9ea7e92cc1e6a0cdbb15999913d93c87e7.zip | |
Enable mempool consistency checks in unit tests
Diffstat (limited to 'src/test/test_bitcoin.cpp')
| -rw-r--r-- | src/test/test_bitcoin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index c68320ba8..3dc59ddd0 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); |