We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f69645 commit e33d2c9Copy full SHA for e33d2c9
1 file changed
lightning/src/ln/funding.rs
@@ -445,7 +445,7 @@ impl FundingTemplate {
445
) -> Result<FundingContribution, ()> {
446
let FundingTemplate { shared_input, min_rbf_feerate, prior_contribution } = self;
447
let rbf_feerate = min_rbf_feerate.ok_or(())?;
448
- if max_feerate < rbf_feerate {
+ if rbf_feerate > max_feerate {
449
return Err(());
450
}
451
@@ -482,7 +482,7 @@ impl FundingTemplate {
482
483
484
485
486
487
488
0 commit comments