From d65488bf983c2e5d8b9a35efce0e7e0dc6b86e6f Mon Sep 17 00:00:00 2001 From: Asher Dawes Date: Sat, 7 Jul 2018 21:23:53 -0700 Subject: [PATCH] troubleshooting komodod on legacy hardware running Windows --- src/txdb.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/txdb.cpp b/src/txdb.cpp index d3c87654d..b5def4474 100644 --- a/src/txdb.cpp +++ b/src/txdb.cpp @@ -489,7 +489,7 @@ bool CBlockTreeDB::LoadBlockIndexGuts() pcursor->Seek(ssKeySet.str()); // Load mapBlockIndex - LogPrint("Debug", "Past the pcursor->Seek\n"); + LogPrintf("Past the pcursor->Seek\n"); while (pcursor->Valid()) { boost::this_thread::interruption_point(); try { @@ -525,9 +525,9 @@ bool CBlockTreeDB::LoadBlockIndexGuts() pindexNew->nSproutValue = diskindex.nSproutValue; // Consistency checks - LogPrint("Debug", "Before the auto header\n"); + LogPrintf("Debug Before the auto header\n"); auto header = pindexNew->GetBlockHeader(); - LogPrint("Debug", "Past the auto header\n"); + LogPrintf("Debug Past the auto header\n"); if (header.GetHash() != pindexNew->GetBlockHash()) return error("LoadBlockIndex(): block header inconsistency detected: on-disk = %s, in-memory = %s", diskindex.ToString(), pindexNew->ToString());