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
In #432 we introduced tracking of onchain payments, which are marked as PaymentStatus::Pending until reaching ANTI_REORG_DELAY confirmations.
However, that means that if a previously tracked payment get's RBF'd the original might be marked as Pending forever in our store. We should find a way to detect double-spends and eventually drop the original entry.
This should possibly happen in conjunction with #367.