@@ -3179,7 +3179,7 @@ macro_rules! emit_channel_pending_event {
3179
3179
counterparty_node_id: $channel.context.get_counterparty_node_id(),
3180
3180
user_channel_id: $channel.context.get_user_id(),
3181
3181
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()),
3183
3183
}, None));
3184
3184
$channel.context.set_channel_pending_event_emitted();
3185
3185
}
@@ -3194,7 +3194,7 @@ macro_rules! emit_channel_ready_event {
3194
3194
channel_id: $channel.context.channel_id(),
3195
3195
user_channel_id: $channel.context.get_user_id(),
3196
3196
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(),
3198
3198
}, None));
3199
3199
$channel.context.set_channel_ready_event_emitted();
3200
3200
}
@@ -4341,7 +4341,7 @@ where
4341
4341
return Err(("Refusing to forward to a private channel based on our config.", 0x4000 | 10));
4342
4342
}
4343
4343
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() {
4345
4345
// `option_scid_alias` (referred to in LDK as `scid_privacy`) means
4346
4346
// "refuse to forward unless the SCID alias was used", so we pretend
4347
4347
// we don't have the channel here.
@@ -6587,7 +6587,7 @@ where
6587
6587
for (chan_id, chan) in peer_state.channel_by_id.iter_mut()
6588
6588
.filter_map(|(chan_id, chan)| chan.as_funded_mut().map(|chan| (chan_id, chan)))
6589
6589
{
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() {
6591
6591
anchor_feerate
6592
6592
} else {
6593
6593
non_anchor_feerate
@@ -6644,7 +6644,7 @@ where
6644
6644
peer_state.channel_by_id.retain(|chan_id, chan| {
6645
6645
match chan.as_funded_mut() {
6646
6646
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() {
6648
6648
anchor_feerate
6649
6649
} else {
6650
6650
non_anchor_feerate
@@ -7939,7 +7939,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
7939
7939
if accept_0conf {
7940
7940
// This should have been correctly configured by the call to Inbound(V1/V2)Channel::new.
7941
7941
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() {
7943
7943
let send_msg_err_event = MessageSendEvent::HandleError {
7944
7944
node_id: channel.context().get_counterparty_node_id(),
7945
7945
action: msgs::ErrorAction::SendErrorMessage{
@@ -11553,7 +11553,7 @@ where
11553
11553
11554
11554
self.do_chain_event(Some(height), |channel| {
11555
11555
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() {
11557
11557
if let Some(feerate) = min_anchor_feerate {
11558
11558
channel.check_for_stale_feerate(&logger, feerate)?;
11559
11559
}
0 commit comments