@@ -1129,6 +1129,7 @@ impl_writeable_tlv_based!(PendingChannelMonitorUpdate, {
11291129pub(super) enum ChannelPhase<SP: Deref> where SP::Target: SignerProvider {
11301130 UnfundedOutboundV1(OutboundV1Channel<SP>),
11311131 UnfundedInboundV1(InboundV1Channel<SP>),
1132+ #[allow(dead_code)] // TODO(dual_funding): Remove once creating V2 channels is enabled.
11321133 UnfundedOutboundV2(OutboundV2Channel<SP>),
11331134 UnfundedInboundV2(InboundV2Channel<SP>),
11341135 Funded(Channel<SP>),
@@ -4182,6 +4183,7 @@ pub(super) struct DualFundingChannelContext {
41824183 /// Note that the `our_funding_satoshis` field is equal to the total value of `our_funding_inputs`
41834184 /// minus any fees paid for our contributed weight. This means that change will never be generated
41844185 /// and the maximum value possible will go towards funding the channel.
4186+ #[allow(dead_code)] // TODO(dual_funding): Remove once contribution to V2 channels is enabled.
41854187 pub our_funding_inputs: Vec<(TxIn, TransactionU16LenLimited)>,
41864188}
41874189
@@ -8710,6 +8712,7 @@ pub(super) struct OutboundV2Channel<SP: Deref> where SP::Target: SignerProvider
87108712}
87118713
87128714impl<SP: Deref> OutboundV2Channel<SP> where SP::Target: SignerProvider {
8715+ #[allow(dead_code)] // TODO(dual_funding): Remove once creating V2 channels is enabled.
87138716 pub fn new<ES: Deref, F: Deref, L: Deref>(
87148717 fee_estimator: &LowerBoundedFeeEstimator<F>, entropy_source: &ES, signer_provider: &SP,
87158718 counterparty_node_id: PublicKey, their_features: &InitFeatures, funding_satoshis: u64,
@@ -9021,6 +9024,7 @@ impl<SP: Deref> InboundV2Channel<SP> where SP::Target: SignerProvider {
90219024 ///
90229025 /// [`msgs::AcceptChannelV2`]: crate::ln::msgs::AcceptChannelV2
90239026 #[cfg(test)]
9027+ #[allow(dead_code)] // TODO(dual_funding): Remove once contribution to V2 channels is enabled.
90249028 pub fn get_accept_channel_v2_message(&self) -> msgs::AcceptChannelV2 {
90259029 self.generate_accept_channel_v2_message()
90269030 }
0 commit comments