aboutsummaryrefslogtreecommitdiff
path: root/src/policy/fees.cpp
diff options
context:
space:
mode:
authorAlex Morcos <morcos@chaincode.com>2017-05-18 12:38:43 -0400
committerAlex Morcos <morcos@chaincode.com>2017-05-18 12:38:43 -0400
commit8d4f401269fe6fb06df7137871b7e2e6368e080e (patch)
tree96dc6a7b7f39297289e044d5350637d31f006d54 /src/policy/fees.cpp
parent962cd3f0587e87de1e38c1777151dca282f3dd84 (diff)
downloadbitcoin-8d4f401269fe6fb06df7137871b7e2e6368e080e.tar.xz
Fix timestamp in fee estimate debug message
Diffstat (limited to 'src/policy/fees.cpp')
-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 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)