diff options
author | Matt Corallo <git@bluematt.me> | 2015-10-08 00:46:57 -0700 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2015-10-13 01:05:43 -0700 |
commit | e6c7b362ab8915e2aac167fa519bd29836d482af (patch) | |
tree | d34bdd92b0f60688a50c4461fb6335189cb895dd /src/main.cpp | |
parent | 241d6078ba26db4d3a36227d3275be2ee34625a6 (diff) |
Print mempool size in KB when adding txn
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 613eeff227..f01bb8ec9e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4287,10 +4287,10 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, RelayTransaction(tx); vWorkQueue.push_back(inv.hash); - LogPrint("mempool", "AcceptToMemoryPool: peer=%d: accepted %s (poolsz %u)\n", + LogPrint("mempool", "AcceptToMemoryPool: peer=%d: accepted %s (poolsz %u txn, %u kB)\n", pfrom->id, tx.GetHash().ToString(), - mempool.size()); + mempool.size(), mempool.DynamicMemoryUsage() / 1000); // Recursively process any orphan transactions that depended on this one set<NodeId> setMisbehaving; |