-
Notifications
You must be signed in to change notification settings - Fork 407
Move events.rs into its own top-level module #2083
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
Conversation
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 the CI failure is only due to missing module docs, LGTM otherwise.
CI is sad because |
Codecov ReportPatch coverage:
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more Additional details and impacted files@@ Coverage Diff @@
## main #2083 +/- ##
==========================================
- Coverage 91.43% 91.40% -0.03%
==========================================
Files 101 102 +1
Lines 49536 49536
Branches 49536 49536
==========================================
- Hits 45291 45278 -13
- Misses 4245 4258 +13
... and 2 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
This is largely motivated by some follow-up work for anchors that will introduce an event handler for `BumpTransaction` events, which we can now include in this new top-level `events` module.
Its accompanying event handler will also live here.
Had to rebase due to a conflict. |
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.
LGTM, might want to update the doc references in lightingdevkit.org/docs
in a follow-up.
This is largely motivated by some follow-up work for anchors that will introduce an event handler for
BumpTransaction
events, which we can now include in this new top-levelevents
module.