Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove redundant ChannelContext::channel_type #3678

Merged
merged 3 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
223 changes: 110 additions & 113 deletions lightning/src/ln/channel.rs

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lightning/src/ln/channel_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ impl ChannelDetails {
// Note that accept_channel (or open_channel) is always the first message, so
// `have_received_message` indicates that type negotiation has completed.
channel_type: if context.have_received_message() {
Some(context.get_channel_type().clone())
Some(funding.get_channel_type().clone())
} else {
None
},
Expand Down Expand Up @@ -540,8 +540,8 @@ impl ChannelDetails {
inbound_htlc_maximum_msat: context.get_holder_htlc_maximum_msat(funding),
config: Some(context.config()),
channel_shutdown_state: Some(context.shutdown_state()),
pending_inbound_htlcs: context.get_pending_inbound_htlc_details(),
pending_outbound_htlcs: context.get_pending_outbound_htlc_details(),
pending_inbound_htlcs: context.get_pending_inbound_htlc_details(funding),
pending_outbound_htlcs: context.get_pending_outbound_htlc_details(funding),
}
}
}
Expand Down
14 changes: 7 additions & 7 deletions lightning/src/ln/channelmanager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3175,7 +3175,7 @@ macro_rules! emit_channel_pending_event {
counterparty_node_id: $channel.context.get_counterparty_node_id(),
user_channel_id: $channel.context.get_user_id(),
funding_txo: $channel.funding.get_funding_txo().unwrap().into_bitcoin_outpoint(),
channel_type: Some($channel.context.get_channel_type().clone()),
channel_type: Some($channel.funding.get_channel_type().clone()),
}, None));
$channel.context.set_channel_pending_event_emitted();
}
Expand All @@ -3190,7 +3190,7 @@ macro_rules! emit_channel_ready_event {
channel_id: $channel.context.channel_id(),
user_channel_id: $channel.context.get_user_id(),
counterparty_node_id: $channel.context.get_counterparty_node_id(),
channel_type: $channel.context.get_channel_type().clone(),
channel_type: $channel.funding.get_channel_type().clone(),
}, None));
$channel.context.set_channel_ready_event_emitted();
}
Expand Down Expand Up @@ -4337,7 +4337,7 @@ where
return Err(("Refusing to forward to a private channel based on our config.", 0x4000 | 10));
}
if let HopConnector::ShortChannelId(outgoing_scid) = next_packet.outgoing_connector {
if chan.context.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
if chan.funding.get_channel_type().supports_scid_privacy() && outgoing_scid != chan.context.outbound_scid_alias() {
// `option_scid_alias` (referred to in LDK as `scid_privacy`) means
// "refuse to forward unless the SCID alias was used", so we pretend
// we don't have the channel here.
Expand Down Expand Up @@ -6610,7 +6610,7 @@ where
for (chan_id, chan) in peer_state.channel_by_id.iter_mut()
.filter_map(|(chan_id, chan)| chan.as_funded_mut().map(|chan| (chan_id, chan)))
{
let new_feerate = if chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
let new_feerate = if chan.funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
anchor_feerate
} else {
non_anchor_feerate
Expand Down Expand Up @@ -6667,7 +6667,7 @@ where
peer_state.channel_by_id.retain(|chan_id, chan| {
match chan.as_funded_mut() {
Some(funded_chan) => {
let new_feerate = if funded_chan.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
let new_feerate = if funded_chan.funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
anchor_feerate
} else {
non_anchor_feerate
Expand Down Expand Up @@ -7962,7 +7962,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
if accept_0conf {
// This should have been correctly configured by the call to Inbound(V1/V2)Channel::new.
debug_assert!(channel.context().minimum_depth().unwrap() == 0);
} else if channel.context().get_channel_type().requires_zero_conf() {
} else if channel.funding().get_channel_type().requires_zero_conf() {
let send_msg_err_event = MessageSendEvent::HandleError {
node_id: channel.context().get_counterparty_node_id(),
action: msgs::ErrorAction::SendErrorMessage{
Expand Down Expand Up @@ -11593,7 +11593,7 @@ where

self.do_chain_event(Some(height), |channel| {
let logger = WithChannelContext::from(&self.logger, &channel.context, None);
if channel.context.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
if channel.funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
if let Some(feerate) = min_anchor_feerate {
channel.check_for_stale_feerate(&logger, feerate)?;
}
Expand Down
4 changes: 1 addition & 3 deletions lightning/src/ln/dual_funding_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,9 @@ fn do_test_v2_channel_establishment(session: V2ChannelEstablishmentTestSession)
let per_peer_state = nodes[1].node.per_peer_state.read().unwrap();
let peer_state =
per_peer_state.get(&nodes[0].node.get_our_node_id()).unwrap().lock().unwrap();
let channel_context =
peer_state.channel_by_id.get(&tx_complete_msg.channel_id).unwrap().context();
let channel_funding =
peer_state.channel_by_id.get(&tx_complete_msg.channel_id).unwrap().funding();
(channel_funding.get_funding_txo(), channel_context.get_channel_type().clone())
(channel_funding.get_funding_txo(), channel_funding.get_channel_type().clone())
};

channel.funding.channel_transaction_parameters = ChannelTransactionParameters {
Expand Down
2 changes: 1 addition & 1 deletion lightning/src/ln/functional_test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ macro_rules! get_channel_type_features {
let mut per_peer_state_lock;
let mut peer_state_lock;
let chan = get_channel_ref!($node, $counterparty_node, per_peer_state_lock, peer_state_lock, $channel_id);
chan.context().get_channel_type().clone()
chan.funding().get_channel_type().clone()
}
}
}
Expand Down
5 changes: 5 additions & 0 deletions pending_changelog/3678-channel-type-check.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## API Updates (0.2)

* Upgrading to v0.2.0 from a version prior to 0.0.116 is not allowed when a channel was opened with
either `scid_privacy` or `zero_conf` included in its channel type. Upgrade to v0.0.116 first
before upgrading to v0.2.0.
Loading