aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-03-04 21:14:38 +0200
committerRiccardo Spagni <ric@spagni.net>2017-03-04 21:14:38 +0200
commitf2d0f0174f5626ff41374947c35a8568aef4a24f (patch)
tree89be397701a6bd70f06e8f544f86968d54c5eefd
parentMerge pull request #1834 (diff)
parenttx_pool: log separately "not ready" and "double spend" cases (diff)
downloadmonero-f2d0f0174f5626ff41374947c35a8568aef4a24f.tar.xz
Merge pull request #1836
cd71774d tx_pool: log separately "not ready" and "double spend" cases (moneromooo-monero)
-rw-r--r--src/cryptonote_core/tx_pool.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp
index 3abd3a99a..e943c961d 100644
--- a/src/cryptonote_core/tx_pool.cpp
+++ b/src/cryptonote_core/tx_pool.cpp
@@ -671,9 +671,15 @@ namespace cryptonote
// Skip transactions that are not ready to be
// included into the blockchain or that are
// missing key images
- if (!is_transaction_ready_to_go(tx_it->second) || have_key_images(k_images, tx_it->second.tx))
+ if (!is_transaction_ready_to_go(tx_it->second))
{
- LOG_PRINT_L2(" not ready to go, or key images already seen");
+ LOG_PRINT_L2(" not ready to go");
+ sorted_it++;
+ continue;
+ }
+ if (have_key_images(k_images, tx_it->second.tx))
+ {
+ LOG_PRINT_L2(" key images already seen");
sorted_it++;
continue;
}