diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2015-05-04 01:56:42 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2015-05-11 17:58:14 -0700 |
commit | b3ed4236beb7f68e1720ceb3da15e0c3682ef629 (patch) | |
tree | c5a0bf72e529ebc73ca8c665b2aefa6967af4fbf /src/txdb.h | |
parent | fc684ad8afae19c209701230837d338c5a6c1f72 (diff) |
Cache tweak and logging improvements
Diffstat (limited to 'src/txdb.h')
-rw-r--r-- | src/txdb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txdb.h b/src/txdb.h index 86e1c5d831..bef5dc9fd1 100644 --- a/src/txdb.h +++ b/src/txdb.h @@ -22,7 +22,7 @@ class uint256; //! -dbcache default (MiB) static const int64_t nDefaultDbCache = 100; //! max. -dbcache in (MiB) -static const int64_t nMaxDbCache = sizeof(void*) > 4 ? 4096 : 1024; +static const int64_t nMaxDbCache = sizeof(void*) > 4 ? 16384 : 1024; //! min. -dbcache in (MiB) static const int64_t nMinDbCache = 4; |