aboutsummaryrefslogtreecommitdiff
path: root/src/txdb.h
diff options
context:
space:
mode:
authorAlex Morcos <morcos@chaincode.com>2017-03-31 10:25:39 -0400
committerAlex Morcos <morcos@chaincode.com>2017-03-31 14:07:56 -0400
commitf33afd3b2be1bcabeb10168a53835359c9ff4a3e (patch)
tree35eb0463837c9c496db06973ef4215f64ffa54b3 /src/txdb.h
parent5b95a190e8d7059039ce61e808d494dcf89ebb3b (diff)
downloadbitcoin-f33afd3b2be1bcabeb10168a53835359c9ff4a3e.tar.xz
Lower default memory footprint slightly
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 963f1006ea..337942ffaf 100644
--- a/src/txdb.h
+++ b/src/txdb.h
@@ -26,7 +26,7 @@ static constexpr int DB_PEAK_USAGE_FACTOR = 2;
//! No need to flush if at least this much space still available.
static constexpr int MAX_BLOCK_COINSDB_USAGE = 100 * DB_PEAK_USAGE_FACTOR;
//! -dbcache default (MiB)
-static const int64_t nDefaultDbCache = 600;
+static const int64_t nDefaultDbCache = 450;
//! max. -dbcache (MiB)
static const int64_t nMaxDbCache = sizeof(void*) > 4 ? 16384 : 1024;
//! min. -dbcache (MiB)