We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8f83dc commit 92f8bc3Copy full SHA for 92f8bc3
lightning/src/ln/channelmanager.rs
@@ -9581,7 +9581,7 @@ where
9581
peer_state.channel_by_id.retain(|_, chan| {
9582
let shutdown_result = match channel_opt {
9583
Some((_, channel_id)) if chan.context().channel_id() != channel_id => None,
9584
- _ => unblock_chan(chan, &mut peer_state.pending_msg_events),
+ _ => unblock_chan(chan.phase_mut(), &mut peer_state.pending_msg_events),
9585
};
9586
if let Some(shutdown_result) = shutdown_result {
9587
let context = &chan.context();
0 commit comments