$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
7 lines
143 B
Python
Executable File
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'
|