@@ -8134,7 +8134,21 @@ impl<SP: Deref> FundedChannel<SP> where
8134
8134
}
8135
8135
8136
8136
let dust_exposure_limiting_feerate = self.context.get_dust_exposure_limiting_feerate(&fee_estimator);
8137
- let htlc_stats = self.context.get_pending_htlc_stats(&self.funding, None, dust_exposure_limiting_feerate);
8137
+
8138
+ core::iter::once(&self.funding)
8139
+ .chain(self.pending_funding.iter())
8140
+ .map(|funding| self.can_accept_incoming_htlc_for_funding(funding, msg, dust_exposure_limiting_feerate, &logger))
8141
+ .collect::<Result<(), LocalHTLCFailureReason>>()
8142
+ }
8143
+
8144
+ fn can_accept_incoming_htlc_for_funding<L: Deref>(
8145
+ &self, funding: &FundingScope, msg: &msgs::UpdateAddHTLC,
8146
+ dust_exposure_limiting_feerate: u32, logger: &L,
8147
+ ) -> Result<(), LocalHTLCFailureReason>
8148
+ where
8149
+ L::Target: Logger,
8150
+ {
8151
+ let htlc_stats = self.context.get_pending_htlc_stats(funding, None, dust_exposure_limiting_feerate);
8138
8152
let max_dust_htlc_exposure_msat = self.context.get_max_dust_htlc_exposure_msat(dust_exposure_limiting_feerate);
8139
8153
let on_counterparty_tx_dust_htlc_exposure_msat = htlc_stats.on_counterparty_tx_dust_exposure_msat;
8140
8154
if on_counterparty_tx_dust_htlc_exposure_msat > max_dust_htlc_exposure_msat {
@@ -8143,11 +8157,11 @@ impl<SP: Deref> FundedChannel<SP> where
8143
8157
on_counterparty_tx_dust_htlc_exposure_msat, max_dust_htlc_exposure_msat);
8144
8158
return Err(LocalHTLCFailureReason::DustLimitCounterparty)
8145
8159
}
8146
- let htlc_success_dust_limit = if self. funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
8160
+ let htlc_success_dust_limit = if funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
8147
8161
0
8148
8162
} else {
8149
8163
let dust_buffer_feerate = self.context.get_dust_buffer_feerate(None) as u64;
8150
- dust_buffer_feerate * htlc_success_tx_weight(self. funding.get_channel_type()) / 1000
8164
+ dust_buffer_feerate * htlc_success_tx_weight(funding.get_channel_type()) / 1000
8151
8165
};
8152
8166
let exposure_dust_limit_success_sats = htlc_success_dust_limit + self.context.holder_dust_limit_satoshis;
8153
8167
if msg.amount_msat / 1000 < exposure_dust_limit_success_sats {
@@ -8159,7 +8173,7 @@ impl<SP: Deref> FundedChannel<SP> where
8159
8173
}
8160
8174
}
8161
8175
8162
- let anchor_outputs_value_msat = if self. funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
8176
+ let anchor_outputs_value_msat = if funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
8163
8177
ANCHOR_OUTPUT_VALUE_SATOSHI * 2 * 1000
8164
8178
} else {
8165
8179
0
@@ -8175,23 +8189,23 @@ impl<SP: Deref> FundedChannel<SP> where
8175
8189
}
8176
8190
8177
8191
let pending_value_to_self_msat =
8178
- self. funding.value_to_self_msat + htlc_stats.pending_inbound_htlcs_value_msat - removed_outbound_total_msat;
8192
+ funding.value_to_self_msat + htlc_stats.pending_inbound_htlcs_value_msat - removed_outbound_total_msat;
8179
8193
let pending_remote_value_msat =
8180
- self. funding.get_value_satoshis() * 1000 - pending_value_to_self_msat;
8194
+ funding.get_value_satoshis() * 1000 - pending_value_to_self_msat;
8181
8195
8182
- if !self. funding.is_outbound() {
8196
+ if !funding.is_outbound() {
8183
8197
// `Some(())` is for the fee spike buffer we keep for the remote. This deviates from
8184
8198
// the spec because the fee spike buffer requirement doesn't exist on the receiver's
8185
8199
// side, only on the sender's. Note that with anchor outputs we are no longer as
8186
8200
// sensitive to fee spikes, so we need to account for them.
8187
8201
//
8188
8202
// A `None` `HTLCCandidate` is used as in this case because we're already accounting for
8189
8203
// the incoming HTLC as it has been fully committed by both sides.
8190
- let mut remote_fee_cost_incl_stuck_buffer_msat = self.context.next_remote_commit_tx_fee_msat(&self. funding, None, Some(()));
8191
- if !self. funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
8204
+ let mut remote_fee_cost_incl_stuck_buffer_msat = self.context.next_remote_commit_tx_fee_msat(funding, None, Some(()));
8205
+ if !funding.get_channel_type().supports_anchors_zero_fee_htlc_tx() {
8192
8206
remote_fee_cost_incl_stuck_buffer_msat *= FEE_SPIKE_BUFFER_FEE_INCREASE_MULTIPLE;
8193
8207
}
8194
- if pending_remote_value_msat.saturating_sub(self. funding.holder_selected_channel_reserve_satoshis * 1000).saturating_sub(anchor_outputs_value_msat) < remote_fee_cost_incl_stuck_buffer_msat {
8208
+ if pending_remote_value_msat.saturating_sub(funding.holder_selected_channel_reserve_satoshis * 1000).saturating_sub(anchor_outputs_value_msat) < remote_fee_cost_incl_stuck_buffer_msat {
8195
8209
log_info!(logger, "Attempting to fail HTLC due to fee spike buffer violation in channel {}. Rebalancing is required.", &self.context.channel_id());
8196
8210
return Err(LocalHTLCFailureReason::FeeSpikeBuffer);
8197
8211
}
0 commit comments