electrumx/server/version.py
Neil Booth 135ab68f74 Simple protocol negotiation and setting of handlers
It turns out clients pass 0.10 instead of 1.0 as the protocol version.
Distinguish some handlers for 1.0 and 1.1 protocols.
Log protocol version request
Add tests of new library function
2017-09-06 16:24:56 +09:00

6 lines
109 B
Python

# Server name and protocol versions
VERSION = 'ElectrumX 1.0.17'
PROTOCOL_MIN = '0.10'
PROTOCOL_MAX = '1.1'