You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since #8916 peers that send duplicate transactions gets dropped. This usually isn't an issue, but when running a daemon with --max-txpool-weight it's possible that duplicate transactions can get into the fluff queue.
If you receive a tx, add it to your fluff queue, drop the tx from the txpool, then receive it again, it is added to the fluff queue a second time. When the fluff timer fires we would then broadcast a message with the same tx twice causing the peer to disconnect.
1. Fix duplicate transaction monero-project#9335
2. Add test for cases where there are duplicate transaction in fluff
Co-authored-by: Boog900 <boog900@tutanota.com>
0xFFFC0000
added a commit
to 0xFFFC0000/monero
that referenced
this issue
Jun 6, 2024
1. Fix duplicate transaction monero-project#9335
2. Add test for cases where there are duplicate transaction in fluff
Co-authored-by: Boog900 <boog900@tutanota.com>
Since #8916 peers that send duplicate transactions gets dropped. This usually isn't an issue, but when running a daemon with
--max-txpool-weight
it's possible that duplicate transactions can get into the fluff queue.Quoting @Boog900 from #9317 (comment)
Relevant code:
monero/src/cryptonote_protocol/levin_notify.cpp
Lines 203 to 207 in c821478
The text was updated successfully, but these errors were encountered: