-
Notifications
You must be signed in to change notification settings - Fork 384
update bitcoin to 0.31.2 #1300
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 bitcoin to 0.31.2 #1300
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.
Hey, I still haven't looked at the code in depth, but I have a few comments:
- You are upgrading the project MSRV from 1.63 to 1.70 - that's not a change we take lightly, is there any reason behind it? Has this been discussed with the team?
- Commits should be atomic and hygienic, and the message should explain what you're doing. You currently have multiple commits doing the same thing, which should be squashed together. I suppose this PR should have one commit updating to rust-bitcoin 0.31 + more commits if you're doing something else (updating the MSRV, for example, would need its own commit). More info here: https://github.com/bitcoin/bitcoin/blob/master/CONTRIBUTING.md#committing-patches or here: https://blog.lanesawyer.dev/17501/git-hygiene
- The CI is currently failing, can you look into that please?
@@ -12,7 +12,7 @@ jobs: | |||
rust: | |||
- version: stable | |||
clippy: true | |||
- version: 1.63.0 # MSRV |
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.
Why are you updating the project MSRV?
I have not finished the upgrade code, some code test are not passed. |
No problem! I suggest you keep this PR in draft in the meantime, then :) |
Description
Notes to the reviewers
Changelog notice
Checklists
All Submissions:
cargo fmt
andcargo clippy
before committingwait for