-
Notifications
You must be signed in to change notification settings - Fork 37.7k
multiprocess: Add new bitcoin-gui, bitcoin-qt, bitcoin-wallet init implementations #23006
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
…plementations Add separate init implementations instead of sharing existing bitcoind and bitcoin-node ones, so they can start to be differentiated in upcoming commits with node and wallet code no longer linked into the bitcoin-gui binary and wallet code no longer linked into the bitcoin-node binary.
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. ConflictsReviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first. |
Concept ACK. |
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 2d3d624, I have reviewed the code and it looks OK. Compiled on Linux with and without multiprocess support. Also compiled on Windows with msbuild
.
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 2d3d624
Compiled and run successfully on Ubuntu 20.04.
2d3d624
to
d5f985e
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.
Thanks for reviews!
Updated 2d3d624 -> d5f985e (pr/ipc-init.1
-> pr/ipc-init.2
, compare) with suggestions
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.
reACK d5f985e
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.
…yscoin-wallet init implementations
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.
qk
Add separate
interfaces::Init
subclasses forbitcoin-wallet
,bitcoin-gui
, andbitcoin-qt
binaries instead of sharingbitcoind
andbitcoin-node
init subclasses in different binaries. After this, the new init subclasses can be customized in #10102, so node and wallet code is dropped from thebitcoin-gui
binary and wallet code is dropped from into thebitcoin-node
binary.This PR is part of the process separation project.