electrumx/server/version.py
LaoDC 5e92feb8a6 Add new variables to BANNER(_TOR)
$SERVER_VER will return the version number (eg: 1.0.10)
$SERVER_SUBVERSION will return the full version string (eg: ElectrumX 1.0.10)

$VERSION is kept for legacy which is the same as $SERVER_SUBVERSION
2017-05-03 17:09:52 +07:00

7 lines
143 B
Python
Executable File

# Server name and protocol versions
VERSION = '1.0.10'
SUB_VERSION = 'ElectrumX {}'.format(VERSION)
PROTOCOL_MIN = '1.0'
PROTOCOL_MAX = '1.0'