From b19caeea098f92a7f72aaeee49573358f4b153a3 Mon Sep 17 00:00:00 2001 From: Sebastian Falbesoner Date: Wed, 11 Mar 2026 16:40:02 +0100 Subject: [PATCH] doc: add release note for #31560 (named pipe support for `dumptxoutset` RPC) --- doc/release-notes-31560.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/release-notes-31560.md diff --git a/doc/release-notes-31560.md b/doc/release-notes-31560.md new file mode 100644 index 00000000000..07a8f7798ed --- /dev/null +++ b/doc/release-notes-31560.md @@ -0,0 +1,8 @@ +Updated RPCs +------------ + +- The `dumptxoutset` RPC now supports writing to a named pipe + on UNIX-like systems (see mkfifo(1) and mkfifo(3) man pages). + This allows the raw UTXO set data to be consumed directly by + another process (e.g., the `contrib/utxo-tools/utxo_to_sqlite.py` + conversion script) without first writing it to disk. (#31560)