-
Notifications
You must be signed in to change notification settings - Fork 168
remove sketchy LikelyFalse error
#645
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 sketchy LikelyFalse error
#645
Conversation
This error would trigger on `l:0` on the basis that this is equivalent to `u:0` but always less efficient. There are no other "linting" errors like this in this library, and the C++ implementation doesn't have it, so we should drop it.
|
CI is broken because of rust-lang/rust#121684 |
|
Added a pile of commits and filed an issue on rustc to fix CI. |
138559e to
50db03c
Compare
|
I can't properly ack because I don't feel super confident with my knowledge of the repo (talking about b87b4fb) but LGTM |
tcharding
left a comment
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.
ACK 50db03c
|
cc @sanket1729 can you ACK at least the first commit here? |
|
Sure. Will do in 10 mins |
1 similar comment
|
Sure. Will do in 10 mins |
sanket1729
left a comment
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.
ACK 50db03c
…error 50db03c9620f052740c370362b3498a7ad483a8c cargo fmt (Andrew Poelstra) 220f101f4cb4631f0a6c1d8226081a3acaee0ebf ci: screw up imports for rust-lang/rust#121684 (Andrew Poelstra) df069afe553c701215a800ce6cd234883e60e6bb ci: remove unnecessary imports of `bitcoin` (Andrew Poelstra) 3725549e92fdaee24a23e1c96ada1e4c3a33e60c ci: tighten import of `Vec` (Andrew Poelstra) d441ccd4671c5e3638882d780dabfecb3ae23b78 ci: remove imports that are redundant with super::* (Andrew Poelstra) b87b4fba8ffb2712e0b5a67cddf77d5dfc690a6b remove sketchy `LikelyFalse` error (Andrew Poelstra) Pull request description: This error would trigger on `l:0` on the basis that this is equivalent to `u:0` but always less efficient. There are no other "linting" errors like this in this library, and the C++ implementation doesn't have it, so we should drop it. Fixes #633 ACKs for top commit: tcharding: ACK 50db03c9620f052740c370362b3498a7ad483a8c sanket1729: ACK 50db03c9620f052740c370362b3498a7ad483a8c Tree-SHA512: 30681e6abe7957b9fbe059e808d8057fd174ea156d1853960370d2fd63b032a500f85965a5c7424764df76ed804c62d9a781ae38cdc2b123e9b4b53308dd89f5
This error would trigger on
l:0on the basis that this is equivalent tou:0but always less efficient. There are no other "linting" errors like this in this library, and the C++ implementation doesn't have it, so we should drop it.Fixes #633