Merkle hash improve #390

Merged
bvbfan merged 2 commits from merkle_improve into v17_master 2020-06-16 20:23:54 +02:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit fc5a0078b0 - Show all commits

View file

@ -155,6 +155,7 @@ CClaimTrieCacheBase::~CClaimTrieCacheBase()
bool CClaimTrie::SyncToDisk()
{
db << "PRAGMA optimize";
// alternatively, switch to full sync after we are caught up on the chain
return sqlite::sync(db) == SQLITE_OK;
}

View file

@ -58,7 +58,7 @@ class uint256;
//! No need to periodic flush if at least this much space still available.
static constexpr int MAX_BLOCK_COINSDB_USAGE = 10;
//! -dbcache default (MiB)
static const int64_t nDefaultDbCache = 480;
static const int64_t nDefaultDbCache = 4096;
//! -dbbatchsize default (bytes)
static const int64_t nDefaultDbBatchSize = 16 << 20;
//! max. -dbcache (MiB)