From e83699a626b8a41c8fb9d0450e14e06a29a98bb8 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 26 Jul 2025 13:52:59 +0300 Subject: [PATCH] doc/zmq: fix unix socket path example Following https://github.com/bitcoin/bitcoin/blob/75a5c8258ec5309fe506438aa3815608430b53d6/doc/release-notes/release-notes-28.0.md?plain=1#L105 --- doc/zmq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/zmq.md b/doc/zmq.md index cb15444a486..b88c93a6bfc 100644 --- a/doc/zmq.md +++ b/doc/zmq.md @@ -84,7 +84,7 @@ For instance: $ bitcoind -zmqpubhashtx=tcp://127.0.0.1:28332 \ -zmqpubhashtx=tcp://192.168.1.2:28332 \ -zmqpubhashblock="tcp://[::1]:28333" \ - -zmqpubrawtx=ipc:///tmp/bitcoind.tx.raw \ + -zmqpubrawtx=unix:/tmp/bitcoind.tx.raw \ -zmqpubhashtxhwm=10000 `bitcoin node` or `bitcoin gui` can also be substituted for `bitcoind`.