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
Fix comments for feerate-tolerance in reference.conf (#3053)
The "ratio-high" config setting is enforced for all commit formats,
not just the legacy format, unlike what the comment suggests.
Commit 36a3c88
invalidated the old comment.
Copy file name to clipboardExpand all lines: eclair-core/src/main/resources/reference.conf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -269,8 +269,8 @@ eclair {
269
269
}
270
270
271
271
feerate-tolerance {
272
-
ratio-low = 0.5 // will allow remote fee rates as low as half our local feerate when not using anchor outputs
273
-
ratio-high = 10.0 // will allow remote fee rates as high as 10 times our local feerate when not using anchor outputs
272
+
ratio-low = 0.5 // will allow remote fee rates as low as half our local feerate (only enforced when not using anchor outputs)
273
+
ratio-high = 10.0 // will allow remote fee rates as high as 10 times our local feerate (for all commitment formats)
274
274
// when using anchor outputs, we only need to use a commitment feerate that allows the tx to propagate: we will use CPFP to speed up confirmation if needed.
275
275
// the following value is the maximum feerate we'll use for our commit tx (in sat/byte)
0 commit comments