From e3dcc8441541b36197c754b7afe3857511730d68 Mon Sep 17 00:00:00 2001 From: Evan Duffield Date: Sat, 7 Feb 2015 13:05:10 -0700 Subject: [PATCH] added debuging for fork detection --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 235c1cade0..f902a33286 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2840,6 +2840,8 @@ bool CheckBlock(const CBlock& block, CValidationState& state, bool fCheckPOW, bo } } } + } else { + LogPrintf("CheckBlock() : fork detected, skipping transaction locking checks\n"); } @@ -2907,6 +2909,8 @@ bool CheckBlock(const CBlock& block, CValidationState& state, bool fCheckPOW, bo } else { LogPrintf("CheckBlock() : pindex is null, skipping masternode payment check\n"); } + } else { + LogPrintf("CheckBlock() : fork detected, skipping masternode payment checks\n"); }