@@ -6002,8 +6002,6 @@ impl<SP: SignerProvider> ChannelContext<SP> {
60026002 signature.map(|(signature, _)| msgs::FundingSigned {
60036003 channel_id: self.channel_id(),
60046004 signature,
6005- #[cfg(taproot)]
6006- partial_signature_with_nonce: None,
60076005 })
60086006 }
60096007
@@ -6129,8 +6127,6 @@ impl<SP: SignerProvider> ChannelContext<SP> {
61296127 htlc_signatures,
61306128 signature,
61316129 funding_txid: funding.get_funding_txo().map(|funding_txo| funding_txo.txid),
6132- #[cfg(taproot)]
6133- partial_signature_with_nonce: None,
61346130 })
61356131 } else {
61366132 log_debug!(
@@ -9463,8 +9459,6 @@ where
94639459 channel_id: self.context.channel_id,
94649460 per_commitment_secret,
94659461 next_per_commitment_point: self.holder_commitment_point.next_point(),
9466- #[cfg(taproot)]
9467- next_local_nonce: None,
94689462 release_htlc_message_paths,
94699463 });
94709464 }
@@ -11519,7 +11513,7 @@ where
1151911513 bitcoin_signature_2: if were_node_one { their_bitcoin_sig } else { our_bitcoin_sig },
1152011514 contents: announcement,
1152111515 })
11522- }
11516+ },
1152311517 }
1152411518 } else {
1152511519 Err(ChannelError::Ignore("Attempted to sign channel announcement before we'd received announcement_signatures".to_string()))
@@ -12729,8 +12723,6 @@ where
1272912723 signature,
1273012724 htlc_signatures,
1273112725 funding_txid: funding.get_funding_txo().map(|funding_txo| funding_txo.txid),
12732- #[cfg(taproot)]
12733- partial_signature_with_nonce: None,
1273412726 })
1273512727 }
1273612728 }
@@ -13310,10 +13302,6 @@ impl<SP: SignerProvider> OutboundV1Channel<SP> {
1331013302 funding_txid: self.funding.channel_transaction_parameters.funding_outpoint.as_ref().unwrap().txid,
1331113303 funding_output_index: self.funding.channel_transaction_parameters.funding_outpoint.as_ref().unwrap().index,
1331213304 signature,
13313- #[cfg(taproot)]
13314- partial_signature_with_nonce: None,
13315- #[cfg(taproot)]
13316- next_local_nonce: None,
1331713305 })
1331813306 }
1331913307
@@ -13718,8 +13706,6 @@ impl<SP: SignerProvider> InboundV1Channel<SP> {
1371813706 channel_type: Some(self.funding.get_channel_type().clone()),
1371913707 },
1372013708 channel_reserve_satoshis: self.funding.holder_selected_channel_reserve_satoshis,
13721- #[cfg(taproot)]
13722- next_local_nonce: None,
1372313709 })
1372413710 }
1372513711
0 commit comments