We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 531ade7 commit c19c2f5Copy full SHA for c19c2f5
lightning/src/ln/channelmanager.rs
@@ -9637,6 +9637,9 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
9637
), chan_entry
9638
);
9639
if let Some(announcement_sigs) = announcement_sigs_opt {
9640
+ let mut short_to_chan_info = self.short_to_chan_info.write().unwrap();
9641
+ insert_short_channel_id!(short_to_chan_info, chan);
9642
+
9643
log_trace!(logger, "Sending announcement_signatures for channel {}", chan.context.channel_id());
9644
peer_state.pending_msg_events.push(MessageSendEvent::SendAnnouncementSignatures {
9645
node_id: counterparty_node_id.clone(),
0 commit comments