mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 16:27:39 +00:00
Fix copy/paste bug, thx Boolberry
This commit is contained in:
parent
e12ccdf905
commit
c050ff43bf
1 changed files with 3 additions and 3 deletions
|
@ -152,7 +152,7 @@ namespace cryptonote
|
||||||
<< "transaction id = " << get_transaction_hash(tx));
|
<< "transaction id = " << get_transaction_hash(tx));
|
||||||
|
|
||||||
auto it_in_set = key_image_set.find(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));
|
<< "transaction id = " << get_transaction_hash(tx));
|
||||||
key_image_set.erase(it_in_set);
|
key_image_set.erase(it_in_set);
|
||||||
if(!key_image_set.size())
|
if(!key_image_set.size())
|
||||||
|
@ -351,7 +351,7 @@ namespace cryptonote
|
||||||
ss << "id: " << txe.first << ENDL
|
ss << "id: " << txe.first << ENDL
|
||||||
<< "blob_size: " << txd.blob_size << ENDL
|
<< "blob_size: " << txd.blob_size << ENDL
|
||||||
<< "fee: " << txd.fee << 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_height: " << txd.max_used_block_height << ENDL
|
||||||
<< "max_used_block_id: " << txd.max_used_block_id << ENDL
|
<< "max_used_block_id: " << txd.max_used_block_id << ENDL
|
||||||
<< "last_failed_height: " << txd.last_failed_height << ENDL
|
<< "last_failed_height: " << txd.last_failed_height << ENDL
|
||||||
|
@ -363,7 +363,7 @@ namespace cryptonote
|
||||||
<< obj_to_json_str(txd.tx) << ENDL
|
<< obj_to_json_str(txd.tx) << ENDL
|
||||||
<< "blob_size: " << txd.blob_size << ENDL
|
<< "blob_size: " << txd.blob_size << ENDL
|
||||||
<< "fee: " << txd.fee << 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_height: " << txd.max_used_block_height << ENDL
|
||||||
<< "max_used_block_id: " << txd.max_used_block_id << ENDL
|
<< "max_used_block_id: " << txd.max_used_block_id << ENDL
|
||||||
<< "last_failed_height: " << txd.last_failed_height << ENDL
|
<< "last_failed_height: " << txd.last_failed_height << ENDL
|
||||||
|
|
Loading…
Reference in a new issue