aboutsummaryrefslogtreecommitdiff
path: root/src/index
diff options
context:
space:
mode:
Diffstat (limited to 'src/index')
-rw-r--r--src/index/txindex.cpp4
-rw-r--r--src/index/txindex.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/index/txindex.cpp b/src/index/txindex.cpp
index 7d3d2fed52..328039977f 100644
--- a/src/index/txindex.cpp
+++ b/src/index/txindex.cpp
@@ -8,7 +8,9 @@
std::unique_ptr<TxIndex> g_txindex;
-TxIndex::TxIndex(std::unique_ptr<TxIndexDB> db) : m_db(std::move(db)) {}
+TxIndex::TxIndex(size_t n_cache_size, bool f_memory, bool f_wipe)
+ : m_db(MakeUnique<TxIndex::DB>(n_cache_size, f_memory, f_wipe))
+{}
bool TxIndex::Init()
{
diff --git a/src/index/txindex.h b/src/index/txindex.h
index fb92ad98dc..2a0c70e9d1 100644
--- a/src/index/txindex.h
+++ b/src/index/txindex.h
@@ -29,7 +29,7 @@ protected:
public:
/// Constructs the index, which becomes available to be queried.
- explicit TxIndex(std::unique_ptr<TxIndexDB> db);
+ explicit TxIndex(size_t n_cache_size, bool f_memory = false, bool f_wipe = false);
/// Look up a transaction by hash.
///