You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: lightning/src/ln/channel.rs
+6-12
Original file line number
Diff line number
Diff line change
@@ -880,9 +880,7 @@ struct HTLCStats {
880
880
/// An enum gathering stats on commitment transaction, either local or remote.
881
881
struct CommitmentStats<'a> {
882
882
tx: CommitmentTransaction, // the transaction info
883
-
feerate_per_kw: u32, // the feerate included to build the transaction
884
883
total_fee_sat: u64, // the total fee included in the transaction
885
-
num_nondust_htlcs: usize, // the number of HTLC outputs (dust HTLCs *non*-included)
886
884
htlcs_included: Vec<(HTLCOutputInCommitment, Option<&'a HTLCSource>)>, // the list of HTLCs (dust HTLCs *included*) which were not ignored when building the transaction
887
885
local_balance_msat: u64, // local balance before fees *not* considering dust limits
if msg.htlc_signatures.len() != commitment_stats.num_nondust_htlcs {
3532
-
return Err(ChannelError::close(format!("Got wrong number of HTLC signatures ({}) from remote. It must be {}", msg.htlc_signatures.len(), commitment_stats.num_nondust_htlcs)));
3529
+
if msg.htlc_signatures.len() != commitment_stats.tx.htlcs().len() {
3530
+
return Err(ChannelError::close(format!("Got wrong number of HTLC signatures ({}) from remote. It must be {}", msg.htlc_signatures.len(), commitment_stats.tx.htlcs().len())));
3533
3531
}
3534
3532
3535
3533
// Up to LDK 0.0.115, HTLC information was required to be duplicated in the
0 commit comments