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
fix: remove unnecessary tx fetching in RemoveMempoolConflictsForLock
`RemoveMempoolConflictsForLock` is called in two instances
* `ProcessInstantSendLock` when we *have* a valid transaction (tx !=
nullptr) and want to purge conflicting transactions
* `TransactionAddedToMempool` when we have received a transaction and
found the corresponding lock (else condition to `islock == nullptr`),
and want to purge conflicting transactions
Neither case calls for fetching the transaction based on the islock hash
since in both cases, we already have the transaction
0 commit comments