We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75b8953 commit c4656e0Copy full SHA for c4656e0
src/main.cpp
@@ -2743,9 +2743,10 @@ bool static LoadBlockIndexDB()
2743
if (it == mapBlockIndex.end())
2744
return true;
2745
chainActive.SetTip(it->second);
2746
- LogPrintf("LoadBlockIndexDB(): hashBestChain=%s height=%d date=%s\n",
+ LogPrintf("LoadBlockIndexDB(): hashBestChain=%s height=%d date=%s progress=%f\n",
2747
chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(),
2748
- DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()));
+ DateTimeStrFormat("%Y-%m-%d %H:%M:%S", chainActive.Tip()->GetBlockTime()),
2749
+ Checkpoints::GuessVerificationProgress(chainActive.Tip()));
2750
2751
2752
}
0 commit comments