diff options
| author | Jim Posen <[email protected]> | 2018-05-15 17:26:49 -0700 |
|---|---|---|
| committer | Jim Posen <[email protected]> | 2018-06-04 19:22:28 -0700 |
| commit | 89eddcd365e9a2218648f5cc5b9f22b28023f50a (patch) | |
| tree | 6aeaaec4323b1a6c846fc79e539bba4579f4d203 /src/test/txindex_tests.cpp | |
| parent | MOVEONLY: Move BaseIndex to its own file. (diff) | |
| download | discoin-89eddcd365e9a2218648f5cc5b9f22b28023f50a.tar.xz discoin-89eddcd365e9a2218648f5cc5b9f22b28023f50a.zip | |
index: Remove TxIndexDB from public interface of TxIndex.
Diffstat (limited to 'src/test/txindex_tests.cpp')
| -rw-r--r-- | src/test/txindex_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/txindex_tests.cpp b/src/test/txindex_tests.cpp index 14158f287..be7ee2428 100644 --- a/src/test/txindex_tests.cpp +++ b/src/test/txindex_tests.cpp @@ -15,7 +15,7 @@ BOOST_AUTO_TEST_SUITE(txindex_tests) BOOST_FIXTURE_TEST_CASE(txindex_initial_sync, TestChain100Setup) { - TxIndex txindex(MakeUnique<TxIndexDB>(1 << 20, true)); + TxIndex txindex(1 << 20, true); CTransactionRef tx_disk; uint256 block_hash; |