We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e5d775 commit a09e4e1Copy full SHA for a09e4e1
src/cryptonote_core/blockchain.cpp
@@ -3841,7 +3841,7 @@ bool Blockchain::check_tx_inputs(transaction& tx,
3841
3842
if(have_tx_keyimg_as_spent(in_to_key.k_image))
3843
{
3844
- 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));
3845
tvc.m_double_spend = true;
3846
return false;
3847
}
0 commit comments