We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4318c8e commit 3aaa895Copy full SHA for 3aaa895
src/cryptonote_core/blockchain.cpp
@@ -3855,7 +3855,7 @@ bool Blockchain::check_tx_inputs(transaction& tx,
3855
3856
if(have_tx_keyimg_as_spent(in_to_key.k_image))
3857
{
3858
- MERROR_VER("Key image already spent in blockchain: " << epee::string_tools::pod_to_hex(in_to_key.k_image) << " of tx " << get_transaction_hash(tx));
+ MERROR_VER("Transaction " << get_transaction_hash(tx) << "spends key image already spent in blockchain: " << epee::string_tools::pod_to_hex(in_to_key.k_image));
3859
tvc.m_double_spend = true;
3860
return false;
3861
}
0 commit comments