aboutsummaryrefslogtreecommitdiff
path: root/src/txdb.h
diff options
context:
space:
mode:
authorJim Posen <jimpo@coinbase.com>2017-12-08 11:29:59 -0800
committerJim Posen <jimpo@coinbase.com>2018-04-25 11:25:12 -0700
commit8181db88f6e0ed96654951e18b1558cd8f78765b (patch)
tree45a4614e5baf4e0df61995519938b06b47e079ae /src/txdb.h
parentf90c3a62f506d1bc0fe26972b312f07152c79b2e (diff)
downloadbitcoin-8181db88f6e0ed96654951e18b1558cd8f78765b.tar.xz
[init] Initialize and start TxIndex in init code.
Diffstat (limited to 'src/txdb.h')
-rw-r--r--src/txdb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txdb.h b/src/txdb.h
index 980e43b088..4193f98de1 100644
--- a/src/txdb.h
+++ b/src/txdb.h
@@ -36,7 +36,7 @@ static const int64_t nMaxBlockDBCache = 2;
//! Max memory allocated to block tree DB specific cache, if -txindex (MiB)
// Unlike for the UTXO database, for the txindex scenario the leveldb cache make
// a meaningful difference: https://github.com/bitcoin/bitcoin/pull/8273#issuecomment-229601991
-static const int64_t nMaxBlockDBAndTxIndexCache = 1024;
+static const int64_t nMaxTxIndexCache = 1024;
//! Max memory allocated to coin DB specific cache (MiB)
static const int64_t nMaxCoinsDBCache = 8;