aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-08-27 09:20:33 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-08-27 09:20:33 +0200
commit2e280311b87ac95a765edd3cac05096e48c73545 (patch)
treebfccbc856a40296f9d64566053604f91abc076c1 /src/main.h
parentf30801afbde7598318a5b03de9812c58a6a34f33 (diff)
downloadbitcoin-2e280311b87ac95a765edd3cac05096e48c73545.tar.xz
Perform CVerifyDB on pcoinsdbview instead of pcoinsTip
Bypassing the main coins cache allows more thorough checking with the same memory budget. This has no effect on performance because everything ends up in the child cache created by VerifyDB itself. It has bugged me ever since #4675, which effectively reduced the number of checked blocks to reduce peak memory usage. - Pass the coinsview to use as argument to VerifyDB - This also avoids that the first `pcoinsTip->Flush()` after VerifyDB writes a large slew of unchanged coin records back to the database.
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index e5357cbfdd..fae8990d20 100644
--- a/src/main.h
+++ b/src/main.h
@@ -942,7 +942,7 @@ class CVerifyDB {
public:
CVerifyDB();
~CVerifyDB();
- bool VerifyDB(int nCheckLevel, int nCheckDepth);
+ bool VerifyDB(CCoinsView *coinsview, int nCheckLevel, int nCheckDepth);
};
/** An in-memory indexed chain of blocks. */