From d9b172cd00fc3a8de1308e4469b82f5da474ea33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20=C3=81lvarez=20Rosa?= Date: Mon, 2 Oct 2023 12:12:36 +0200 Subject: [PATCH] doc: fix link to developer-notes.md file in multiprocess.md --- doc/design/multiprocess.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.