@@ -3402,8 +3402,7 @@ macro_rules! handle_monitor_update_completion {
3402
3402
&mut $peer_state.pending_msg_events, $chan, updates.raa,
3403
3403
updates.commitment_update, updates.order, updates.accepted_htlcs, updates.pending_update_adds,
3404
3404
updates.funding_broadcastable, updates.channel_ready,
3405
- updates.announcement_sigs, updates.tx_signatures, None, None,
3406
- );
3405
+ updates.announcement_sigs, updates.tx_signatures, None);
3407
3406
if let Some(upd) = channel_update {
3408
3407
$peer_state.pending_msg_events.push(upd);
3409
3408
}
@@ -8919,10 +8918,9 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
8919
8918
funding_broadcastable: Option<Transaction>,
8920
8919
channel_ready: Option<msgs::ChannelReady>, announcement_sigs: Option<msgs::AnnouncementSignatures>,
8921
8920
tx_signatures: Option<msgs::TxSignatures>, tx_abort: Option<msgs::TxAbort>,
8922
- splice_locked: Option<msgs::SpliceLocked>,
8923
8921
) -> (Option<(u64, PublicKey, OutPoint, ChannelId, u128, Vec<(PendingHTLCInfo, u64)>)>, Option<(u64, Vec<msgs::UpdateAddHTLC>)>) {
8924
8922
let logger = WithChannelContext::from(&self.logger, &channel.context, None);
8925
- log_trace!(logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {} pending update_add_htlcs, {}broadcasting funding, {} channel ready, {} announcement, {} tx_signatures, {} tx_abort, {} splice_locked ",
8923
+ log_trace!(logger, "Handling channel resumption for channel {} with {} RAA, {} commitment update, {} pending forwards, {} pending update_add_htlcs, {}broadcasting funding, {} channel ready, {} announcement, {} tx_signatures, {} tx_abort",
8926
8924
&channel.context.channel_id(),
8927
8925
if raa.is_some() { "an" } else { "no" },
8928
8926
if commitment_update.is_some() { "a" } else { "no" },
@@ -8932,7 +8930,6 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
8932
8930
if announcement_sigs.is_some() { "sending" } else { "without" },
8933
8931
if tx_signatures.is_some() { "sending" } else { "without" },
8934
8932
if tx_abort.is_some() { "sending" } else { "without" },
8935
- if splice_locked.is_some() { "sending" } else { "without" },
8936
8933
);
8937
8934
8938
8935
let counterparty_node_id = channel.context.get_counterparty_node_id();
@@ -8973,12 +8970,6 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
8973
8970
msg,
8974
8971
});
8975
8972
}
8976
- if let Some(msg) = splice_locked {
8977
- pending_msg_events.push(MessageSendEvent::SendSpliceLocked {
8978
- node_id: counterparty_node_id,
8979
- msg,
8980
- });
8981
- }
8982
8973
8983
8974
macro_rules! handle_cs { () => {
8984
8975
if let Some(update) = commitment_update {
@@ -11020,8 +11011,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
11020
11011
let (htlc_forwards, decode_update_add_htlcs) = self.handle_channel_resumption(
11021
11012
&mut peer_state.pending_msg_events, chan, responses.raa, responses.commitment_update, responses.order,
11022
11013
Vec::new(), Vec::new(), None, responses.channel_ready, responses.announcement_sigs,
11023
- responses.tx_signatures, responses.tx_abort, responses.splice_locked,
11024
- );
11014
+ responses.tx_signatures, responses.tx_abort);
11025
11015
debug_assert!(htlc_forwards.is_none());
11026
11016
debug_assert!(decode_update_add_htlcs.is_none());
11027
11017
if let Some(upd) = channel_update {
0 commit comments