electrumx/server/version.py
LaoDC 9dceeb914c 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:10:52 +07:00

7 lines
143 B
Python

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