diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-09-01 09:41:50 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-09-01 09:42:10 +0200 |
| commit | 93f97aab629d6d3b7e2c296b24fc37eef9502cd1 (patch) | |
| tree | 4bd4c5a554e3edf2e579cd3fbd43cf6697a830d8 /src/init.cpp | |
| parent | changed field types in some structures to equivalent unambiguous types (diff) | |
| parent | Perform CVerifyDB on pcoinsdbview instead of pcoinsTip (diff) | |
| download | discoin-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/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 50ad2785d..b8988f8b7 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -978,7 +978,7 @@ bool AppInit2(boost::thread_group& threadGroup) } uiInterface.InitMessage(_("Verifying blocks...")); - if (!CVerifyDB().VerifyDB(GetArg("-checklevel", 3), + if (!CVerifyDB().VerifyDB(pcoinsdbview, GetArg("-checklevel", 3), GetArg("-checkblocks", 288))) { strLoadError = _("Corrupted block database detected"); break; |