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 6ded069 commit 0b363dcCopy full SHA for 0b363dc
lightning-transaction-sync/src/esplora.rs
@@ -283,10 +283,10 @@ where
283
.get_output_status(&output.outpoint.txid, output.outpoint.index as u64))?
284
{
285
if let Some(spending_txid) = output_status.txid {
286
- if confirmed_txs.iter().any(|ctx| ctx.tx.txid() == spending_txid) {
287
- continue;
288
- }
289
if let Some(spending_tx_status) = output_status.status {
+ if confirmed_txs.iter().any(|ctx| ctx.tx.txid() == spending_txid) {
+ continue;
+ }
290
if let Some(confirmed_tx) = maybe_await!(self
291
.get_confirmed_tx(
292
&spending_txid,
0 commit comments