-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update/0.18.0 #129
Update/0.18.0 #129
Conversation
Dominion5254
commented
Jun 6, 2024
- Update LND to 0.18.0
- Update buildService and releaseService actions
- Add missing migration
- Fix build errors
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small UX note regarding ensuring that if zero-conf is enabled you must also have scid-alias enabled as well.
EDIT: Also to take full advantage of the new update I recommend adding the sweeper
options into the advanced section of the config.
If I understand correctly, exposing the I would be somewhat hesitant to expose users that potential footgun and the resulting support load. |
These values help inform the sweeper how to make decisions wrt how much it burns in chain fees in order to recover possibly contested outputs (HTLCs and Breach outputs). Unfortunately there's no "correct" value, which is precisely why we expose it. There is risk of fund loss for all values via two vectors: unclaimed outputs, and overpaying for fees.
This is fair. I also would like to see every user option exposed eventually. I figure the "Advanced" section of the menu should be where this stuff lives anyway. What kind of assurance are you looking for here? |
sweeper_budget_anchorcpfpratio: f64, | ||
sweeper_budget_deadlinehtlcratio: f64, | ||
sweeper_budget_nodeadlinehtlcratio: f64, | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you also want to include Option<usize>
values for the different fee caps
Co-authored-by: ProofOfKeags <[email protected]>