diff options
author | David Álvarez Rosa <dalvrosa@amazon.com> | 2023-10-02 12:12:36 +0200 |
---|---|---|
committer | David Álvarez Rosa <dalvrosa@amazon.com> | 2023-10-02 12:12:36 +0200 |
commit | d9b172cd00fc3a8de1308e4469b82f5da474ea33 (patch) | |
tree | 202425b9709adcfbc498c3d807fd297a010c6a90 /doc | |
parent | e3b052800f61abcb7d19d1a35fa04c195f3503ab (diff) |
doc: fix link to developer-notes.md file in multiprocess.md
Diffstat (limited to 'doc')
-rw-r--r-- | doc/design/multiprocess.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/design/multiprocess.md b/doc/design/multiprocess.md index e3f389a6d3..e6a77dbbc0 100644 --- a/doc/design/multiprocess.md +++ b/doc/design/multiprocess.md @@ -38,7 +38,7 @@ Alternately, you can install [Cap'n Proto](https://capnproto.org/) and [libmulti Cross process Node, Wallet, and Chain interfaces are defined in [`src/interfaces/`](../src/interfaces/). These are C++ classes which follow -[conventions](developer-notes.md#internal-interface-guidelines), like passing +[conventions](../developer-notes.md#internal-interface-guidelines), like passing serializable arguments so they can be called from different processes, and making methods pure virtual so they can have proxy implementations that forward calls between processes. |