Skip to content

Commit 478bccc

Browse files
committed
f new variable layout
1 parent 58c44e6 commit 478bccc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/chain/channelmonitor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1378,8 +1378,8 @@ impl<Signer: Sign> ChannelMonitor<Signer> {
13781378
let mut confirmed_txid = us.funding_spend_confirmed;
13791379
let mut pending_commitment_tx_conf_thresh = None;
13801380
if let Some((txid, conf_thresh)) = us.onchain_events_awaiting_threshold_conf.iter().find_map(|event| {
1381-
if let OnchainEvent::FundingSpendConfirmation { txid, .. } = event.event {
1382-
Some((txid, event.confirmation_threshold()))
1381+
if let OnchainEvent::FundingSpendConfirmation { .. } = event.event {
1382+
Some((event.txid, event.confirmation_threshold()))
13831383
} else { None }
13841384
}) {
13851385
debug_assert!(us.funding_spend_confirmed.is_none(),

0 commit comments

Comments
 (0)