mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
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.
This commit is contained in:
parent
7b7958bbd9
commit
7815023117
@ -246,6 +246,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…
Reference in New Issue
Block a user