Skip to content

Commit c6bf539

Browse files
authored
Merge pull request #198 from j-berman/log-pool-weight-stressnet
Log total pool weight [stressnet]
2 parents b85bb6c + c20eb90 commit c6bf539

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cryptonote_core/tx_pool.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ namespace cryptonote
351351

352352
++m_cookie;
353353

354-
MINFO("Transaction added to pool: txid " << id << " weight: " << tx_weight << " fee/byte: " << (fee / (double)(tx_weight ? tx_weight : 1)) << ", count: " << m_added_txs_by_id.size());
354+
MINFO("Transaction added to pool: txid " << id << " weight: " << tx_weight << " fee/byte: " << (fee / (double)(tx_weight ? tx_weight : 1)) << ", count: " << m_added_txs_by_id.size() << ", pool total weight: " << m_txpool_weight);
355355

356356
prune(m_txpool_max_weight);
357357

0 commit comments

Comments
 (0)