From b1c995ce09421d85711beedab5b5e861462042ad Mon Sep 17 00:00:00 2001 From: TheLazieR Yip Date: Sun, 13 Nov 2016 09:35:27 +0700 Subject: [PATCH] Update Howto and setup.py about x11_hash package required for Dash --- docs/HOWTO.rst | 3 ++- setup.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/HOWTO.rst b/docs/HOWTO.rst index 21f7379..58337ab 100644 --- a/docs/HOWTO.rst +++ b/docs/HOWTO.rst @@ -14,7 +14,8 @@ small - patches welcome. + irc: Python IRC package. Only required if you enable IRC; ElectrumX will happily serve clients that try to connect directly. I use 15.0.4 but older versions likely are fine. - ++ x11_hash: Python X11 Hash package. Only required if you use ElectrumX + with Dash Network (Both Mainnet and Testnet). Version == 1.4 ; While not requirements for running ElectrumX, it is intended to be run with supervisor software such as Daniel Bernstein's daemontools, diff --git a/setup.py b/setup.py index be23287..e8f6574 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,7 @@ setuptools.setup( python_requires='>=3.5', # "irc" package is only required if IRC connectivity is enabled # via environment variables, in which case I've tested with 15.0.4 + # "x11_hash" package (1.4) is required to sync DASH network. install_requires=['plyvel', 'aiohttp >= 1'], packages=setuptools.find_packages(), description='ElectrumX Server',