doc: fix process name typo in multiprocess.md
What changed, and why it matters
This commit fixes a single-word typo in a documentation file. The text incorrectly said a server class was in the 'bitcoin-wallet' process when the surrounding explanation describes the 'bitcoin-node' process. There is no code change and no security relevance.
No action required; this is a documentation typo fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff changes one word in doc/design/multiprocess.md, replacing ‘bitcoin-wallet’ with ‘bitcoin-node’ in a sentence describing where the generated Chain server subclass lives during a multiprocess IPC sequence. It is a documentation-only correction with no functional, configuration, or executable changes.
Changed components
doc/design/multiprocess.mdInspect captured patch +1 / −1
diff --git a/doc/design/multiprocess.md b/doc/design/multiprocess.md
index e72f2a03..ad045cbb 100644
--- a/doc/design/multiprocess.md
+++ b/doc/design/multiprocess.md
@@ -175,7 +175,7 @@ sequenceDiagram
4. **Handling in bitcoin-node**
- Upon receiving the request, the Cap'n Proto dispatching code in the `bitcoin-node` process calls the `getBlockHash` method of the `Chain` [server class](#c-server-classes-in-generated-code).
- The server class is automatically generated by the `mpgen` tool from the [`chain.capnp`](https://github.com/ryanofsky/bitcoin/blob/pr/ipc/src/ipc/capnp/chain.capnp) file in [`src/ipc/capnp/`](../../src/ipc/capnp/).
- - The `getBlockHash` method of the generated `Chain` server subclass in `bitcoin-wallet` receives a Cap’n Proto request object with the `height` parameter, and calls the `getBlockHash` method on its local `Chain` object with the provided `height`.
+ - The `getBlockHash` method of the generated `Chain` server subclass in `bitcoin-node` receives a Cap’n Proto request object with the `height` parameter, and calls the `getBlockHash` method on its local `Chain` object with the provided `height`.
- When the call returns, it encapsulates the return value in a Cap’n Proto response, which it sends back to the `bitcoin-wallet` process.
5. **Response and Return**
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.