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.
claiming_channel_id
1 parent 4771b39 commit a062317Copy full SHA for a062317
lightning/src/ln/channelmanager.rs
@@ -5756,8 +5756,6 @@ where
5756
let completed_blocker = RAAMonitorUpdateBlockingAction::from_prev_hop_data(&hop_data);
5757
#[cfg(debug_assertions)]
5758
let claiming_chan_funding_outpoint = hop_data.outpoint;
5759
- #[cfg(debug_assertions)]
5760
- let claiming_channel_id = hop_data.channel_id;
5761
let res = self.claim_funds_from_hop(hop_data, payment_preimage,
5762
|htlc_claim_value_msat, definitely_duplicate| {
5763
let chan_to_release =
@@ -5815,7 +5813,7 @@ where
5815
5813
BackgroundEvent::MonitorUpdatesComplete {
5816
5814
channel_id, ..
5817
} =>
5818
- *channel_id == claiming_channel_id,
+ *channel_id == prev_channel_id,
5819
}
5820
}), "{:?}", *background_events);
5821
0 commit comments