Skip to content

Commit f33afd3

Browse files
committed
Lower default memory footprint slightly
1 parent 5b95a19 commit f33afd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/txdb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static constexpr int DB_PEAK_USAGE_FACTOR = 2;
2626
//! No need to flush if at least this much space still available.
2727
static constexpr int MAX_BLOCK_COINSDB_USAGE = 100 * DB_PEAK_USAGE_FACTOR;
2828
//! -dbcache default (MiB)
29-
static const int64_t nDefaultDbCache = 600;
29+
static const int64_t nDefaultDbCache = 450;
3030
//! max. -dbcache (MiB)
3131
static const int64_t nMaxDbCache = sizeof(void*) > 4 ? 16384 : 1024;
3232
//! min. -dbcache (MiB)

0 commit comments

Comments
 (0)