-
Notifications
You must be signed in to change notification settings - Fork 53
doc: Fix and expand design.md #278
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
Merged
ryanofsky
merged 1 commit into
bitcoin-core:master
from
ViniciusCestarii:doc-design-md-corrections
Jun 9, 2026
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
In commit "doc: Fix and expand design.md" (18db0ab)
This all looks accurate now. But I feel like it is also more confusing. The point this is trying to make is that library users don't really interact with the ProxyClient and ProxyClient classes directly. Library users define virtual interfaces and call interface methods that ProxyClient classes implement. And they provide interface pointers that ProxyServer classes wrap. They can create a
ProxyClientobject accessing an interface by callingConnectStream, and they can create aProxyServerobject wrapping an interface by callingConnectStream. The interface type is passed toConnectStreamandServeStreamas a template parameter, and Connect/Serve functions are typically only called once with an initial interface orInitInterfacetype. From there,InitInterfacemethods can return pointers new interfaces, causing newProxyClientandProxyServerobjects to be created when they are called, and those interface and create and pass around pointers to other interface.I think maybe it might make sense to structure the paragraph more like that description but I don't have a clear suggestion.
This change is probably better than the status quo since it is more technically accurate though, and it seems fine to follow up on improving this later.
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.
I agree. This revised version is more accurate, but it may also be harder to follow. Thanks for the feedback