diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2013-01-30 21:43:36 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2013-02-01 23:29:59 +0100 |
commit | 386037615ae02f972287a958d22a5bd2760626a7 (patch) | |
tree | 308156e618b67b34bd7eb07b1338f16e41729d10 /src/test | |
parent | 3d29d5d623c03a26177176a9b422cb00dedd9108 (diff) |
Make sure the genesis block is present after reindex
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test_bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index f75b762f1f..1116507a34 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -28,7 +28,7 @@ struct TestingSetup { pblocktree = new CBlockTreeDB(1 << 20, true); pcoinsdbview = new CCoinsViewDB(1 << 23, true); pcoinsTip = new CCoinsViewCache(*pcoinsdbview); - LoadBlockIndex(); + InitBlockIndex(); bool fFirstRun; pwalletMain = new CWallet("wallet.dat"); pwalletMain->LoadWallet(fFirstRun); |