Skip to content

Commit 92f8bc3

Browse files
committed
Build fix
1 parent a8f83dc commit 92f8bc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/channelmanager.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9581,7 +9581,7 @@ where
95819581
peer_state.channel_by_id.retain(|_, chan| {
95829582
let shutdown_result = match channel_opt {
95839583
Some((_, channel_id)) if chan.context().channel_id() != channel_id => None,
9584-
_ => unblock_chan(chan, &mut peer_state.pending_msg_events),
9584+
_ => unblock_chan(chan.phase_mut(), &mut peer_state.pending_msg_events),
95859585
};
95869586
if let Some(shutdown_result) = shutdown_result {
95879587
let context = &chan.context();

0 commit comments

Comments
 (0)