Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
optout21 committed Nov 21, 2024
1 parent a8f83dc commit 92f8bc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightning/src/ln/channelmanager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9581,7 +9581,7 @@ where
peer_state.channel_by_id.retain(|_, chan| {
let shutdown_result = match channel_opt {
Some((_, channel_id)) if chan.context().channel_id() != channel_id => None,
_ => unblock_chan(chan, &mut peer_state.pending_msg_events),
_ => unblock_chan(chan.phase_mut(), &mut peer_state.pending_msg_events),
};
if let Some(shutdown_result) = shutdown_result {
let context = &chan.context();
Expand Down

0 comments on commit 92f8bc3

Please sign in to comment.