aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-06-08 10:14:44 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2015-06-08 10:14:44 +0200
commit3eada74d6f4720e650c67461c04c3aafdeaff21e (patch)
tree6adea68ad9c52b759d847efa7446f0bdb1699a56 /src
parent053110ddcb1cc5a20658075f1768da87681b98ec (diff)
downloadbitcoin-3eada74d6f4720e650c67461c04c3aafdeaff21e.tar.xz
Disable partition check for now, it triggers too often (issue #6251)
Diffstat (limited to 'src')
-rw-r--r--src/init.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 6b343fb049..bd9d38619f 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -1392,13 +1392,13 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
#endif
StartNode(threadGroup, scheduler);
-
+#if 0 // Disable partition check for now, it triggers too often (issue #6251)
// Monitor the chain, and alert if we get blocks much quicker or slower than expected
int64_t nPowTargetSpacing = Params().GetConsensus().nPowTargetSpacing;
CScheduler::Function f = boost::bind(&PartitionCheck, &IsInitialBlockDownload,
boost::ref(cs_main), boost::cref(chainActive), nPowTargetSpacing);
scheduler.scheduleEvery(f, nPowTargetSpacing);
-
+#endif
#ifdef ENABLE_WALLET
// Generate coins in the background
if (pwalletMain)