refactor: Avoid wallet code writing node settings file#22217
refactor: Avoid wallet code writing node settings file#22217meshcollider merged 1 commit intobitcoin:masterfrom
Conversation
Change wallet loading code to access settings through the Chain interface instead of writing settings.json directly.
|
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. |
meshcollider
left a comment
There was a problem hiding this comment.
Code review ACK 49ee2a0
|
ACK 49ee2a0 ( Change seems straightforward and benign. Just want to confirm that there's no need to update the two other calls to |
Thanks!
That's right. It's safe for the wallet to use the |
|
crACK 49ee2a0 |
|
This PR caused an unintended change in behavior. Before this PR, passing |
Change wallet loading code to access settings through the Chain interface instead of writing settings.json directly. This is for running wallet and node in separate processes, since multiprocess code wouldn't easily work with different processes updating the same file.
This PR is part of the process separation project. The commit was first part of larger PR #10102.