Skip to content

Commit

Permalink
dont take ref
Browse files Browse the repository at this point in the history
Co-authored-by: DaniPopes <57450786+DaniPopes@users.noreply.github.com>
  • Loading branch information
Rjected and DaniPopes authored Jan 14, 2025
1 parent e7652c8 commit 29b86a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/transaction-pool/src/pool/pending.rs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ impl<T: TransactionOrdering> PendingPool<T> {

if !remove_locals && tx.transaction.is_local() {
let sender_id = tx.transaction.sender_id();
if local_senders.insert(&sender_id) {
if local_senders.insert(sender_id) {
non_local_senders -= 1;
}
continue
Expand Down

0 comments on commit 29b86a8

Please sign in to comment.