@@ -4909,7 +4909,6 @@ impl<SP: Deref> ChannelContext<SP> where SP::Target: SignerProvider {
49094909 latest_monitor_update_id: self.latest_monitor_update_id,
49104910 shutdown_scriptpubkey: self.shutdown_scriptpubkey.clone(),
49114911 destination_script: self.destination_script.clone(),
4912- // holder_commitment_point: self.holder_commitment_point,
49134912 cur_counterparty_commitment_transaction_number: self.cur_counterparty_commitment_transaction_number,
49144913 // value_to_self_msat: self.value_to_self_msat,
49154914 pending_inbound_htlcs: self.pending_inbound_htlcs.clone(),
@@ -10364,6 +10363,7 @@ impl<SP: Deref> PendingV2Channel<SP> where SP::Target: SignerProvider {
1036410363 },
1036510364 interactive_tx_constructor: None,
1036610365 interactive_tx_signing_session: None,
10366+ #[cfg(splicing)]
1036710367 pending_splice_post: None,
1036810368 };
1036910369 Ok(chan)
@@ -10373,7 +10373,7 @@ impl<SP: Deref> PendingV2Channel<SP> where SP::Target: SignerProvider {
1037310373 #[cfg(splicing)]
1037410374 pub fn new_spliced<L: Deref>(
1037510375 is_outbound: bool,
10376- pre_splice_channel: &mut FundedChannel<SP>,
10376+ pre_splice_channel: &FundedChannel<SP>,
1037710377 signer_provider: &SP,
1037810378 // counterparty_funding_pubkey: &PublicKey,
1037910379 our_funding_contribution: i64,
@@ -10407,7 +10407,7 @@ impl<SP: Deref> PendingV2Channel<SP> where SP::Target: SignerProvider {
1040710407 let (context, funding) = ChannelContext::new_for_splice(
1040810408 &pre_splice_channel.context,
1040910409 &pre_splice_channel.funding,
10410- true ,
10410+ is_outbound ,
1041110411 // counterparty_funding_pubkey,
1041210412 our_funding_contribution,
1041310413 their_funding_contribution,
0 commit comments