Merge pull request #9224

eeb7c7c tx_memory_pool: make double spends a no-drop offense (jeffro256)
dev-v0.11.2
luigi1111 3 months ago
commit c225a1f25b
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -247,6 +247,7 @@ namespace cryptonote
LOG_PRINT_L1("Transaction with id= "<< id << " used already spent key images"); LOG_PRINT_L1("Transaction with id= "<< id << " used already spent key images");
tvc.m_verifivation_failed = true; tvc.m_verifivation_failed = true;
tvc.m_double_spend = true; tvc.m_double_spend = true;
tvc.m_no_drop_offense = true;
return false; return false;
} }
} }

Loading…
Cancel
Save