We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82e1a2b commit 81c12e4Copy full SHA for 81c12e4
lightning/src/ln/channelmanager.rs
@@ -5896,7 +5896,7 @@ where
5896
}
5897
if let hash_map::Entry::Occupied(mut chan) = peer_state.channel_by_id.entry(channel_funding_outpoint.to_channel_id()) {
5898
debug_assert_eq!(chan.get().get_funding_txo().unwrap(), channel_funding_outpoint);
5899
- if let Some((monitor_update, further_update_exists)) = chan.get_mut().fly_next_unflown_monitor_update() {
+ if let Some((monitor_update, further_update_exists)) = chan.get_mut().unblock_next_blocked_monitor_update() {
5900
log_debug!(self.logger, "Unlocking monitor updating for channel {} and updating monitor",
5901
log_bytes!(&channel_funding_outpoint.to_channel_id()[..]));
5902
let update_res = self.chain_monitor.update_channel(channel_funding_outpoint, monitor_update);
0 commit comments