diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-11 19:44:38 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-12 12:33:48 +0000 |
commit | 5adcb5a48c08b6e9b11493d5676efd4445676bdd (patch) | |
tree | 924f1c798e938aaf8301d552185ff8a8b79b50a8 | |
parent | cryptonote_protocol: misc fluffy block fixes (diff) | |
download | monero-5adcb5a48c08b6e9b11493d5676efd4445676bdd.tar.xz |
tx_pool: add a debug message when adding a tx to the pool
-rw-r--r-- | src/cryptonote_core/tx_pool.cpp | 1 |
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; } //--------------------------------------------------------------------------------- |