mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 00:37:43 +00:00
tx_pool: log separately "not ready" and "double spend" cases
This commit is contained in:
parent
3e761c137d
commit
cd71774d77
1 changed files with 8 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue