From c050ff43bf5a8310b18081c5cd3d9bcd123416b8 Mon Sep 17 00:00:00 2001 From: monero-project Date: Tue, 24 Jun 2014 13:20:15 -0400 Subject: [PATCH] Fix copy/paste bug, thx Boolberry --- src/cryptonote_core/tx_pool.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index ce1bc1ad..7f2caaac 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -152,7 +152,7 @@ namespace cryptonote << "transaction id = " << get_transaction_hash(tx)); auto it_in_set = key_image_set.find(get_transaction_hash(tx)); - CHECK_AND_ASSERT_MES(key_image_set.size(), false, "transaction id not found in key_image set, img=" << txin.k_image << ENDL + CHECK_AND_ASSERT_MES(it_in_set != key_image_set.end, false, "transaction id not found in key_image set, img=" << txin.k_image << ENDL << "transaction id = " << get_transaction_hash(tx)); key_image_set.erase(it_in_set); if(!key_image_set.size()) @@ -351,7 +351,7 @@ namespace cryptonote ss << "id: " << txe.first << ENDL << "blob_size: " << txd.blob_size << ENDL << "fee: " << txd.fee << ENDL - << "kept_by_block: " << txd.kept_by_block << ENDL + << "kept_by_block: " << (txd.kept_by_block ? "true":"false") << ENDL << "max_used_block_height: " << txd.max_used_block_height << ENDL << "max_used_block_id: " << txd.max_used_block_id << ENDL << "last_failed_height: " << txd.last_failed_height << ENDL @@ -363,7 +363,7 @@ namespace cryptonote << obj_to_json_str(txd.tx) << ENDL << "blob_size: " << txd.blob_size << ENDL << "fee: " << txd.fee << ENDL - << "kept_by_block: " << txd.kept_by_block << ENDL + << "kept_by_block: " << (txd.kept_by_block ? "true":"false") << ENDL << "max_used_block_height: " << txd.max_used_block_height << ENDL << "max_used_block_id: " << txd.max_used_block_id << ENDL << "last_failed_height: " << txd.last_failed_height << ENDL