aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-09-01 09:41:50 +0200
committerWladimir J. van der Laan <[email protected]>2014-09-01 09:42:10 +0200
commit93f97aab629d6d3b7e2c296b24fc37eef9502cd1 (patch)
tree4bd4c5a554e3edf2e579cd3fbd43cf6697a830d8 /src/main.h
parentchanged field types in some structures to equivalent unambiguous types (diff)
parentPerform CVerifyDB on pcoinsdbview instead of pcoinsTip (diff)
downloaddiscoin-93f97aab629d6d3b7e2c296b24fc37eef9502cd1.tar.xz
discoin-93f97aab629d6d3b7e2c296b24fc37eef9502cd1.zip
Merge pull request #4768
2e28031 Perform CVerifyDB on pcoinsdbview instead of pcoinsTip (Wladimir J. van der Laan)
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 9fe15d3aa..6b7835664 100644
--- a/src/main.h
+++ b/src/main.h
@@ -871,7 +871,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. */