Skip to content

Commit d9c20be

Browse files
authored
Merge pull request #3678 from jkczyz/2025-03-channel-type
Remove redundant `ChannelContext::channel_type`
2 parents 31c97f4 + 1bb3b4d commit d9c20be

File tree

6 files changed

+127
-127
lines changed

6 files changed

+127
-127
lines changed

lightning/src/ln/channel.rs

+110-113
Large diffs are not rendered by default.

lightning/src/ln/channel_state.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ impl ChannelDetails {
510510
// Note that accept_channel (or open_channel) is always the first message, so
511511
// `have_received_message` indicates that type negotiation has completed.
512512
channel_type: if context.have_received_message() {
513-
Some(context.get_channel_type().clone())
513+
Some(funding.get_channel_type().clone())
514514
} else {
515515
None
516516
},
@@ -540,8 +540,8 @@ impl ChannelDetails {
540540
inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(funding),
541541
config: Some(context.config()),
542542
channel_shutdown_state: Some(context.shutdown_state()),
543-
pending_inbound_htlcs: context.get_pending_inbound_htlc_details(),
544-
pending_outbound_htlcs: context.get_pending_outbound_htlc_details(),
543+
pending_inbound_htlcs: context.get_pending_inbound_htlc_details(funding),
544+
pending_outbound_htlcs: context.get_pending_outbound_htlc_details(funding),
545545
}
546546
}
547547
}

lightning/src/ln/channelmanager.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -3179,7 +3179,7 @@ macro_rules! emit_channel_pending_event {
31793179
counterparty_node_id: $channel.context.get_counterparty_node_id(),
31803180
user_channel_id: $channel.context.get_user_id(),
31813181
funding_txo: $channel.funding.get_funding_txo().unwrap().into_bitcoin_outpoint(),
3182-
channel_type: Some($channel.context.get_channel_type().clone()),
3182+
channel_type: Some($channel.funding.get_channel_type().clone()),
31833183
}, None));
31843184
$channel.context.set_channel_pending_event_emitted();
31853185
}
@@ -3194,7 +3194,7 @@ macro_rules! emit_channel_ready_event {
31943194
channel_id: $channel.context.channel_id(),
31953195
user_channel_id: $channel.context.get_user_id(),
31963196
counterparty_node_id: $channel.context.get_counterparty_node_id(),
3197-
channel_type: $channel.context.get_channel_type().clone(),
3197+
channel_type: $channel.funding.get_channel_type().clone(),
31983198
}, None));
31993199
$channel.context.set_channel_ready_event_emitted();
32003200
}
@@ -4341,7 +4341,7 @@ where
43414341
return Err(("Refusing to forward to a private channel based on our config.", 0x4000 | 10));
43424342
}
43434343
if let HopConnector::ShortChannelId(outgoing_scid) = next_packet.outgoing_connector {
4344-
if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
4344+
if chan.funding.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
43454345
// `option_scid_alias` (referred to in LDK as `scid_privacy`) means
43464346
// "refuse to forward unless the SCID alias was used", so we pretend
43474347
// we don't have the channel here.
@@ -6587,7 +6587,7 @@ where
65876587
for (chan_id, chan) in peer_state.channel_by_id.iter_mut()
65886588
.filter_map(|(chan_id, chan)| chan.as_funded_mut().map(|chan| (chan_id, chan)))
65896589
{
6590-
let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
6590+
let new_feerate = if chan.funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
65916591
anchor_feerate
65926592
} else {
65936593
non_anchor_feerate
@@ -6644,7 +6644,7 @@ where
66446644
peer_state.channel_by_id.retain(|chan_id, chan| {
66456645
match chan.as_funded_mut() {
66466646
Some(funded_chan) => {
6647-
let new_feerate = if funded_chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
6647+
let new_feerate = if funded_chan.funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
66486648
anchor_feerate
66496649
} else {
66506650
non_anchor_feerate
@@ -7939,7 +7939,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
79397939
if accept_0conf {
79407940
// This should have been correctly configured by the call to Inbound(V1/V2)Channel::new.
79417941
debug_assert!(channel.context().minimum_depth().unwrap() == 0);
7942-
} else if channel.context().get_channel_type().requires_zero_conf() {
7942+
} else if channel.funding().get_channel_type().requires_zero_conf() {
79437943
let send_msg_err_event = MessageSendEvent::HandleError {
79447944
node_id: channel.context().get_counterparty_node_id(),
79457945
action: msgs::ErrorAction::SendErrorMessage{
@@ -11553,7 +11553,7 @@ where
1155311553

1155411554
self.do_chain_event(Some(height), |channel| {
1155511555
let logger = WithChannelContext::from(&self.logger, &channel.context, None);
11556-
if channel.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
11556+
if channel.funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
1155711557
if let Some(feerate) = min_anchor_feerate {
1155811558
channel.check_for_stale_feerate(&logger, feerate)?;
1155911559
}

lightning/src/ln/dual_funding_tests.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,9 @@ fn do_test_v2_channel_establishment(session: V2ChannelEstablishmentTestSession)
133133
let per_peer_state = nodes[1].node.per_peer_state.read().unwrap();
134134
let peer_state =
135135
per_peer_state.get(&nodes[0].node.get_our_node_id()).unwrap().lock().unwrap();
136-
let channel_context =
137-
peer_state.channel_by_id.get(&tx_complete_msg.channel_id).unwrap().context();
138136
let channel_funding =
139137
peer_state.channel_by_id.get(&tx_complete_msg.channel_id).unwrap().funding();
140-
(channel_funding.get_funding_txo(), channel_context.get_channel_type().clone())
138+
(channel_funding.get_funding_txo(), channel_funding.get_channel_type().clone())
141139
};
142140

143141
channel.funding.channel_transaction_parameters = ChannelTransactionParameters {

lightning/src/ln/functional_test_utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ macro_rules! get_channel_type_features {
10491049
let mut per_peer_state_lock;
10501050
let mut peer_state_lock;
10511051
let chan = get_channel_ref!($node, $counterparty_node, per_peer_state_lock, peer_state_lock, $channel_id);
1052-
chan.context().get_channel_type().clone()
1052+
chan.funding().get_channel_type().clone()
10531053
}
10541054
}
10551055
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## API Updates (0.2)
2+
3+
* Upgrading to v0.2.0 from a version prior to 0.0.116 is not allowed when a channel was opened with
4+
either `scid_privacy` or `zero_conf` included in its channel type. Upgrade to v0.0.116 first
5+
before upgrading to v0.2.0.

0 commit comments

Comments
 (0)