We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9b76ea commit a6a0deeCopy full SHA for a6a0dee
1 file changed
src/payment/store.rs
@@ -630,7 +630,7 @@ impl StorableObject for PendingPaymentDetails {
630
if self.txid != update.txid {
631
let old_txid = self.txid;
632
self.txid = update.txid;
633
- if old_txid != self.txid && !self.conflicting_txids.contains(&old_txid) {
+ if !self.conflicting_txids.contains(&old_txid) {
634
self.conflicting_txids.push(old_txid);
635
}
636
updated = true;
0 commit comments