tx_memory_pool: make double spends a no-drop offense

Nodes who see different txs in a double spend attack will drop each other, splitting the network.
Issue found by @boog900.
dev-v0.11.2
jeffro256 2 months ago
parent b23116424d
commit eeb7c7c546
No known key found for this signature in database
GPG Key ID: 6F79797A6E392442

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

Loading…
Cancel
Save