-
Notifications
You must be signed in to change notification settings - Fork 418
Trivial 3997 followups #4000
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
Trivial 3997 followups #4000
Conversation
I've assigned @joostjager as a reviewer! |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4000 +/- ##
==========================================
+ Coverage 88.93% 88.95% +0.01%
==========================================
Files 174 174
Lines 124593 124562 -31
Branches 124593 124562 -31
==========================================
- Hits 110813 110803 -10
+ Misses 11283 11263 -20
+ Partials 2497 2496 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
CI is sad
The `Keys` struct is only used when building with `ldk_test_vectors` and thus should be gated on it, rather than being marked `#[allow(unused)]`.
This reverts commit 42ea2e9. The commit spuriously concluded that the unused import warnings were due to trait use in macros, but actually they were all used in normal code, not in macros. This appears to simply be a clippy bug where it treats `as _` as indication that an import is unused, even though such imports are useful for importing traits that do not need to be referenced by name.
3408966
to
cf04c96
Compare
cf04c96
to
7fba8fc
Compare
🔔 1st Reminder Hey @joostjager! This PR has been waiting for your review. |
Trivial-enough. |
The second commit may break the linting CI job again, but its a clippy issue we shouldn't be working around it with bogus allows in the code.