diff options
author | Alex Morcos <morcos@chaincode.com> | 2017-05-18 12:38:43 -0400 |
---|---|---|
committer | Alex Morcos <morcos@chaincode.com> | 2017-05-18 12:38:43 -0400 |
commit | 8d4f401269fe6fb06df7137871b7e2e6368e080e (patch) | |
tree | 96dc6a7b7f39297289e044d5350637d31f006d54 /src/policy/fees.cpp | |
parent | 962cd3f0587e87de1e38c1777151dca282f3dd84 (diff) |
Fix timestamp in fee estimate debug message
Diffstat (limited to 'src/policy/fees.cpp')
-rw-r--r-- | src/policy/fees.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/fees.cpp b/src/policy/fees.cpp index bad3de4b44..fe24a18af9 100644 --- a/src/policy/fees.cpp +++ b/src/policy/fees.cpp @@ -944,7 +944,7 @@ void CBlockPolicyEstimator::FlushUnconfirmed(CTxMemPool& pool) { removeTx(txid, false); } int64_t endclear = GetTimeMicros(); - LogPrint(BCLog::ESTIMATEFEE, "Recorded %u unconfirmed txs from mempool in %ld micros\n",txids.size(), endclear - startclear); + LogPrint(BCLog::ESTIMATEFEE, "Recorded %u unconfirmed txs from mempool in %gs\n",txids.size(), (endclear - startclear)*0.000001); } FeeFilterRounder::FeeFilterRounder(const CFeeRate& minIncrementalFee) |