Skip to content

Commit bcd0576

Browse files
committed
f fields, not tuple
1 parent 92a5ef0 commit bcd0576

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5634,7 +5634,9 @@ where
56345634
} else if definitely_duplicate {
56355635
if let Some(other_chan) = chan_to_release {
56365636
Some(MonitorUpdateCompletionAction::FreeOtherChannelImmediately {
5637-
downstream_counterparty_and_funding_outpoint: other_chan,
5637+
downstream_counterparty_node_id: other_chan.0,
5638+
downstream_funding_outpoint: other_chan.1,
5639+
blocking_action: other_chan.2,
56385640
})
56395641
} else { None }
56405642
} else {

0 commit comments

Comments
 (0)