Skip to content

Commit 8df52bb

Browse files
authored
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.
1 parent 3d415bc commit 8df52bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eclair-core/src/main/resources/reference.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,8 @@ eclair {
269269
}
270270

271271
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)
274274
// 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.
275275
// the following value is the maximum feerate we'll use for our commit tx (in sat/byte)
276276
anchor-output-max-commit-feerate = 10

0 commit comments

Comments
 (0)