From 5adcb5a48c08b6e9b11493d5676efd4445676bdd Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sat, 11 Feb 2017 19:44:38 +0000 Subject: [PATCH] tx_pool: add a debug message when adding a tx to the pool --- src/cryptonote_core/tx_pool.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index 9188f832..f48be1ff 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -255,6 +255,7 @@ namespace cryptonote m_txs_by_fee_and_receive_time.emplace(std::pair(fee / (double)blob_size, receive_time), id); + MINFO("Transaction " << id << " added to pool"); return true; } //---------------------------------------------------------------------------------