mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-12 04:42:36 -03:00
Fix tests after cache tweaks
This commit is contained in:
parent
485cf044ba
commit
c7075c4b65
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@ struct TestingSetup {
|
|||
fPrintToDebugger = true; // don't want to write to debug.log file
|
||||
noui_connect();
|
||||
bitdb.MakeMock();
|
||||
pblocktree = new CBlockTreeDB(true);
|
||||
pcoinsdbview = new CCoinsViewDB(true);
|
||||
pblocktree = new CBlockTreeDB(1 << 20, true);
|
||||
pcoinsdbview = new CCoinsViewDB(1 << 23, true);
|
||||
pcoinsTip = new CCoinsViewCache(*pcoinsdbview);
|
||||
LoadBlockIndex();
|
||||
bool fFirstRun;
|
||||
|
|
Loading…
Reference in a new issue