Browse Source

Add note about IRC package

master
Neil Booth 8 years ago
parent
commit
d84417e2d6
  1. 4
      docs/HOWTO.rst
  2. 1
      server/irc.py

4
docs/HOWTO.rst

@ -11,6 +11,10 @@ small - patches welcome.
+ aiohttp: Python library for asynchronous HTTP. ElectrumX uses it for + aiohttp: Python library for asynchronous HTTP. ElectrumX uses it for
communication with the daemon. Version >= 1.0 required; I am communication with the daemon. Version >= 1.0 required; I am
using 1.0.5. using 1.0.5.
+ 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.
While not requirements for running ElectrumX, it is intended to be run While not requirements for running ElectrumX, it is intended to be run
with supervisor software such as Daniel Bernstein's daemontools, with supervisor software such as Daniel Bernstein's daemontools,

1
server/irc.py

@ -20,6 +20,7 @@ from lib.hash import double_sha256
from lib.util import LoggedClass from lib.util import LoggedClass
from server.version import VERSION from server.version import VERSION
def port_text(letter, port, default): def port_text(letter, port, default):
if not port: if not port:
return '' return ''

Loading…
Cancel
Save