2290@@ -2291,8 +2291,9 @@ void static UpdateTip(CBlockIndex *pindexNew) {
2291 nTimeBestReceived = GetTime();
2292 mempool.AddTransactionsUpdated(1);
2293
2294- LogPrintf("%s: new best=%s height=%d log2_work=%.8g tx=%lu date=%s progress=%f cache=%.1fMiB(%utx)\n", __func__,
2295- chainActive.Tip()->GetBlockHash().ToString(), chainActive.Height(), log(chainActive.Tip()->nChainWork.getdouble())/log(2.0), (unsigned long)chainActive.Tip()->nChainTx,
2296+ LogPrintf("%s: new best=%s height=%d bits=%d log2_work=%.8g tx=%lu date=%s progress=%f cache=%.1fMiB(%utx)\n", __func__,
The rest is using two spaces here. Is this intentional?
I don’t know, I just didn’t notice. I can use two spaces as well, but doesn’t seem important.
Two spaces look strange, yes. But its already there… Can you please add them?
It looks like the spacing now creates a kind of hierarchical grouping, two spaces between a group one between related infos (height/bits/log2_work and date/progress). Fine with me really.
This line is getting crazily long now….