aboutsummaryrefslogtreecommitdiff
path: root/src/test/txindex_tests.cpp
diff options
context:
space:
mode:
authorJim Posen <jim.posen@gmail.com>2018-05-15 17:26:49 -0700
committerJim Posen <jim.posen@gmail.com>2018-06-04 19:22:28 -0700
commit89eddcd365e9a2218648f5cc5b9f22b28023f50a (patch)
tree6aeaaec4323b1a6c846fc79e539bba4579f4d203 /src/test/txindex_tests.cpp
parent2318affd27de436ddf9d866a4b82eed8ea2e738b (diff)
downloadbitcoin-89eddcd365e9a2218648f5cc5b9f22b28023f50a.tar.xz
index: Remove TxIndexDB from public interface of TxIndex.
Diffstat (limited to 'src/test/txindex_tests.cpp')
-rw-r--r--src/test/txindex_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/txindex_tests.cpp b/src/test/txindex_tests.cpp
index 14158f2875..be7ee2428b 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;