From 36f8e0cce700576865e61035626e08c5e845a38a Mon Sep 17 00:00:00 2001 From: Jon Atack Date: Fri, 4 Sep 2020 13:51:32 +0200 Subject: [PATCH 1/2] doc: update PyZMQ installation instructions, ZeroMQ link --- doc/zmq.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/zmq.md b/doc/zmq.md index ac26fc0a48..835dea23f2 100644 --- a/doc/zmq.md +++ b/doc/zmq.md @@ -1,6 +1,6 @@ # Block and Transaction Broadcasting with ZeroMQ -[ZeroMQ](http://zeromq.org/) is a lightweight wrapper around TCP +[ZeroMQ](https://zeromq.org/) is a lightweight wrapper around TCP connections, inter-process communication, and shared-memory, providing various message-oriented semantics such as publish/subscribe, request/reply, and push/pull. @@ -39,8 +39,9 @@ For version information, see [dependencies.md](dependencies.md). Typically, it is packaged by distributions as something like *libzmq3-dev*. The C++ wrapper for ZeroMQ is *not* needed. -In order to run the example Python client scripts in contrib/ one must -also install *python3-zmq*, though this is not necessary for daemon +In order to run the example Python client scripts in the `contrib/zmq/` +directory, one must also install [PyZMQ](https://github.com/zeromq/pyzmq) +(generally with `pip install pyzmq`), though this is not necessary for daemon operation. ## Enabling From 062e6699c4ac48c3d46516190ec411dec3680a0d Mon Sep 17 00:00:00 2001 From: Jon Atack Date: Fri, 4 Sep 2020 17:47:34 +0200 Subject: [PATCH 2/2] script: fix zmq_sub.py file permissions --- contrib/zmq/zmq_sub.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 contrib/zmq/zmq_sub.py diff --git a/contrib/zmq/zmq_sub.py b/contrib/zmq/zmq_sub.py old mode 100644 new mode 100755