aboutsummaryrefslogtreecommitdiff
path: root/src/policy
diff options
context:
space:
mode:
authorKristaps Kaupe <kristaps@blogiem.lv>2024-01-16 15:22:39 +0200
committerKristaps Kaupe <kristaps@blogiem.lv>2024-01-31 21:20:05 +0200
commitc819a83b4d83413a31323c1304664ee4c228ca29 (patch)
tree27a55354635ca42eb441740622fe97ab32a2f7e9 /src/policy
parent9fa8eda8af83b194f281385ad57ea79cad16cbe0 (diff)
Don't use scientific notation in log messages
Diffstat (limited to 'src/policy')
-rw-r--r--src/policy/fees.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/fees.cpp b/src/policy/fees.cpp
index 5440548636..5f1d15c5f2 100644
--- a/src/policy/fees.cpp
+++ b/src/policy/fees.cpp
@@ -1055,7 +1055,7 @@ void CBlockPolicyEstimator::FlushUnconfirmed()
_removeTx(mi->first, false); // this calls erase() on mapMemPoolTxs
}
const auto endclear{SteadyClock::now()};
- LogPrint(BCLog::ESTIMATEFEE, "Recorded %u unconfirmed txs from mempool in %gs\n", num_entries, Ticks<SecondsDouble>(endclear - startclear));
+ LogPrint(BCLog::ESTIMATEFEE, "Recorded %u unconfirmed txs from mempool in %.3fs\n", num_entries, Ticks<SecondsDouble>(endclear - startclear));
}
std::chrono::hours CBlockPolicyEstimator::GetFeeEstimatorFileAge()