diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-02-12 23:26:02 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-02-12 23:26:02 +0200 |
commit | 92fe31fd44d0bfa4d22d1be3c76296102d728052 (patch) | |
tree | 450e1707799c6ac5977e36dad8f26e4fbcd6932f /src/cryptonote_core/tx_pool.cpp | |
parent | Merge pull request #1713 (diff) | |
parent | tx_pool: add a debug message when adding a tx to the pool (diff) | |
download | monero-92fe31fd44d0bfa4d22d1be3c76296102d728052.tar.xz |
Merge pull request #1714
5adcb5a4 tx_pool: add a debug message when adding a tx to the pool (moneromooo-monero)
9faef1f8 cryptonote_protocol: misc fluffy block fixes (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/tx_pool.cpp')
-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; } //--------------------------------------------------------------------------------- |