diff options
| author | Pieter Wuille <[email protected]> | 2016-05-25 16:28:12 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-05-25 16:28:22 +0200 |
| commit | d72098038f3b55a714ed8adb34fab547b15eb0d5 (patch) | |
| tree | 1cc4af14da0e218a8a57ef0def9f8ccade55a1d1 /src/init.cpp | |
| parent | Merge #8063: Acquire lock to check for genesis block. (diff) | |
| parent | VerifyDB: don't check blocks that have been pruned (diff) | |
| download | discoin-d72098038f3b55a714ed8adb34fab547b15eb0d5.tar.xz discoin-d72098038f3b55a714ed8adb34fab547b15eb0d5.zip | |
Merge #8076: VerifyDB: don't check blocks that have been pruned
bd477f4 VerifyDB: don't check blocks that have been pruned (Suhas Daftuar)
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index f95027410..a6d14996b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1269,8 +1269,8 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) uiInterface.InitMessage(_("Verifying blocks...")); if (fHavePruned && GetArg("-checkblocks", DEFAULT_CHECKBLOCKS) > MIN_BLOCKS_TO_KEEP) { - LogPrintf("Prune: pruned datadir may not have more than %d blocks; -checkblocks=%d may fail\n", - MIN_BLOCKS_TO_KEEP, GetArg("-checkblocks", DEFAULT_CHECKBLOCKS)); + LogPrintf("Prune: pruned datadir may not have more than %d blocks; only checking available blocks", + MIN_BLOCKS_TO_KEEP); } { |