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
+45-2Lines changed: 45 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4653,7 +4653,7 @@ mod tests {
4653
4653
use ln::features::InitFeatures;
4654
4654
use ln::msgs::{OptionalField,DataLossProtect,DecodeError};
4655
4655
use ln::chan_utils;
4656
-
use ln::chan_utils::{ChannelPublicKeys,HolderCommitmentTransaction,CounterpartyChannelTransactionParameters};
4656
+
use ln::chan_utils::{ChannelPublicKeys,HolderCommitmentTransaction,CounterpartyChannelTransactionParameters,HTLC_SUCCESS_TX_WEIGHT,HTLC_TIMEOUT_TX_WEIGHT};
4657
4657
use chain::chaininterface::{FeeEstimator,ConfirmationTarget};
4658
4658
use chain::keysinterface::{InMemoryChannelKeys,KeysInterface};
4659
4659
use chain::transaction::OutPoint;
@@ -4737,7 +4737,7 @@ mod tests {
4737
4737
}
4738
4738
4739
4739
#[test]
4740
-
fntest_commit_tx_fees_with_dust(){
4740
+
fntest_holder_vs_counterparty_dust_limit(){
4741
4741
// Test that when calculating the local and remote commitment transaction fees, the correct
0 commit comments