-
Notifications
You must be signed in to change notification settings - Fork 376
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
Remove anchors config flag #2367
Conversation
f46a8ae
to
1a3bad8
Compare
There's a few spurious anchors flags in the CI script, though they'll be ignored now. |
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.
Two nits but LGTM.
1a3bad8
to
d0d6490
Compare
d0d6490
to
5cddb23
Compare
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.
12 warnings introduced
/// Processes [`SpendableOutputs`] events produced from each [`ChannelMonitor`] upon maturity. | ||
/// | ||
/// For channels featuring anchor outputs, this method will also process [`BumpTransaction`] | ||
/// events produced from each [`ChannelMonitor`] while there is a balance to claim onchain | ||
/// within each channel. As the confirmation of a commitment transaction may be critical to the | ||
/// safety of funds, this method must be invoked frequently, ideally once for every chain tip |
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.
Generally I'd prefer if the docs updates were in their own commit, don't care much here though
Now that all of the core functionality for anchor outputs has landed, we're ready to remove the config flag that was temporarily hiding it from our API.
82b646c
5cddb23
to
82b646c
Compare
Would it be difficult to fix the warnings? Leaving them can make it easy to miss relevant warnings in local development when working off of |
They weren't introduced by this PR, but rather by #2361. |
Codecov ReportPatch coverage:
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. Additional details and impacted files@@ Coverage Diff @@
## main #2367 +/- ##
==========================================
+ Coverage 90.30% 90.32% +0.01%
==========================================
Files 106 106
Lines 54900 54888 -12
Branches 54900 54888 -12
==========================================
- Hits 49576 49575 -1
+ Misses 5324 5313 -11
☔ View full report in Codecov by Sentry. |
Now that all of the core functionality for anchor outputs has landed, we're ready to remove the config flag that was temporarily hiding it from our API.
Depends on #2361.