aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-02-11 19:44:38 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-02-12 12:33:48 +0000
commit5adcb5a48c08b6e9b11493d5676efd4445676bdd (patch)
tree924f1c798e938aaf8301d552185ff8a8b79b50a8
parentcryptonote_protocol: misc fluffy block fixes (diff)
downloadmonero-5adcb5a48c08b6e9b11493d5676efd4445676bdd.tar.xz
tx_pool: add a debug message when adding a tx to the pool
-rw-r--r--src/cryptonote_core/tx_pool.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp
index 9188f8329..f48be1ff1 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<double, std::time_t>(fee / (double)blob_size, receive_time), id);
+ MINFO("Transaction " << id << " added to pool");
return true;
}
//---------------------------------------------------------------------------------