doc: fix process name typo in multiprocess.md

This commit is contained in:
ViniciusCestarii 2026-03-12 15:06:55 -03:00
parent 7f295e1d9b
commit c2732146d1
No known key found for this signature in database

View File

@ -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 Capn 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 Capn 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 Capn Proto response, which it sends back to the `bitcoin-wallet` process.
5. **Response and Return**