diff options
| author | Pieter Wuille <[email protected]> | 2012-11-04 17:11:48 +0100 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-11-04 18:06:25 +0100 |
| commit | 1c83b0a3771bc601fdc75588f2cd45318b19c526 (patch) | |
| tree | 3c81936fefc0a962c764522057cb6d68e6c230e4 /src/main.cpp | |
| parent | Merge pull request #1971 from sipa/bugfix_norelayspent (diff) | |
| download | discoin-1c83b0a3771bc601fdc75588f2cd45318b19c526.tar.xz discoin-1c83b0a3771bc601fdc75588f2cd45318b19c526.zip | |
Cache size optimizations
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 43bd5dd47..a08e393ca 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -41,6 +41,7 @@ CBlockIndex* pindexBest = NULL; set<CBlockIndex*, CBlockIndexWorkComparator> setBlockIndexValid; // may contain all CBlockIndex*'s that have validness >=BLOCK_VALID_TRANSACTIONS, and must contain those who aren't failed int64 nTimeBestReceived = 0; bool fImporting = false; +unsigned int nCoinCacheSize = 5000; CMedianFilter<int> cPeerBlockCounts(5, 0); // Amount of blocks that other nodes claim to have @@ -1735,7 +1736,7 @@ bool SetBestChain(CBlockIndex* pindexNew) // Make sure it's successfully written to disk before changing memory structure bool fIsInitialDownload = IsInitialBlockDownload(); - if (!fIsInitialDownload || view.GetCacheSize()>5000) { + if (!fIsInitialDownload || view.GetCacheSize() > nCoinCacheSize) { FlushBlockFile(); pblocktree->Sync(); if (!view.Flush()) |