diff options
author | luigi1111 <luigi1111w@gmail.com> | 2024-03-08 10:49:17 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2024-03-08 10:49:17 -0500 |
commit | c225a1f25bc2b89d3f6eebf1c35fc424b2316952 (patch) | |
tree | 417fd7f98d12e9b706553dffd88c0a354046f8b1 /src | |
parent | Merge pull request #9220 (diff) | |
parent | tx_memory_pool: make double spends a no-drop offense (diff) | |
download | monero-c225a1f25bc2b89d3f6eebf1c35fc424b2316952.tar.xz |
Merge pull request #9224
eeb7c7c tx_memory_pool: make double spends a no-drop offense (jeffro256)
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptonote_core/tx_pool.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index 36fea56a3..5f058b83d 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -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; } } |