diff options
| author | Pieter Wuille <[email protected]> | 2014-09-24 03:19:04 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-09-24 03:19:04 +0200 |
| commit | 7c70438dc67547e83953ba0343a071fae304ce65 (patch) | |
| tree | 88683dd773ad889a630e5262b5051e85262c6bdc /src/test/test_bitcoin.cpp | |
| parent | Add coins_tests with a large randomized CCoinViewCache test. (diff) | |
| download | discoin-7c70438dc67547e83953ba0343a071fae304ce65.tar.xz discoin-7c70438dc67547e83953ba0343a071fae304ce65.zip | |
Get rid of the dummy CCoinsViewCache constructor arg
Diffstat (limited to 'src/test/test_bitcoin.cpp')
| -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 68fad8d03..04f9c708c 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -41,7 +41,7 @@ struct TestingSetup { mapArgs["-datadir"] = pathTemp.string(); pblocktree = new CBlockTreeDB(1 << 20, true); pcoinsdbview = new CCoinsViewDB(1 << 23, true); - pcoinsTip = new CCoinsViewCache(*pcoinsdbview); + pcoinsTip = new CCoinsViewCache(pcoinsdbview); InitBlockIndex(); #ifdef ENABLE_WALLET bool fFirstRun; |