diff --git a/src/qt/res/css/dark.css b/src/qt/res/css/dark.css index d1be65ea460c..57eb378dba44 100644 --- a/src/qt/res/css/dark.css +++ b/src/qt/res/css/dark.css @@ -908,6 +908,10 @@ RPCConsole QTableView { color: #c7c7c7; } +RPCConsole QWidget#detailWidget { + background-color: #323233; +} + #rpcAutoCompleter { background-color: #39393b; border-color: #4a4a4b; diff --git a/src/qt/res/css/light.css b/src/qt/res/css/light.css index 32cba4876007..c296046da267 100644 --- a/src/qt/res/css/light.css +++ b/src/qt/res/css/light.css @@ -892,6 +892,10 @@ RPCConsole QTableView { color: #555; } +RPCConsole QWidget#detailWidget { + background-color: #f2f2f4; +} + #rpcAutoCompleter { background-color: #eaeaec; border-color: #dcdcdc; diff --git a/src/validation.cpp b/src/validation.cpp index a494b41e4f0e..fbb178b2eadb 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -2648,7 +2648,7 @@ void static UpdateTip(const CBlockIndex *pindexNew, const CChainParams& chainPar if (nUpgraded > 0) AppendWarning(warningMessages, strprintf(_("%d of last 100 blocks have unexpected version"), nUpgraded)); } - std::string strMessage = strprintf("%s: new best=%s height=%d version=0x%08x log2_work=%.8g tx=%lu date='%s' progress=%f cache=%.1fMiB(%utxo) evodb_cache=%.1fMiB%s\n", __func__, + LogPrintf("%s: new best=%s height=%d version=0x%08x log2_work=%.8g tx=%lu date='%s' progress=%f cache=%.1fMiB(%utxo) evodb_cache=%.1fMiB%s\n", __func__, pindexNew->GetBlockHash().ToString(), pindexNew->nHeight, pindexNew->nVersion, log(pindexNew->nChainWork.getdouble())/log(2.0), (unsigned long)pindexNew->nChainTx, FormatISO8601DateTime(pindexNew->GetBlockTime()),