Require aiorpcx 0.9.1
This commit is contained in:
parent
c6a9fd7a30
commit
2271c8a45c
@ -82,8 +82,8 @@ class Controller(ServerBase):
|
||||
'''Start the RPC server and wait for the mempool to synchronize. Then
|
||||
start serving external clients.
|
||||
'''
|
||||
if not (0, 9, 0) <= aiorpcx_version < (0, 10):
|
||||
raise RuntimeError('aiorpcX version 0.9.x required')
|
||||
if not (0, 9, 1) <= aiorpcx_version < (0, 10):
|
||||
raise RuntimeError('aiorpcX version 0.9.x with x >= 1 required')
|
||||
|
||||
env = self.env
|
||||
min_str, max_str = env.coin.SESSIONCLS.protocol_min_max_strings()
|
||||
|
||||
2
setup.py
2
setup.py
@ -12,7 +12,7 @@ setuptools.setup(
|
||||
# "blake256" package is required to sync Decred network.
|
||||
# "xevan_hash" package is required to sync Xuez network.
|
||||
# "groestlcoin_hash" package is required to sync Groestlcoin network.
|
||||
install_requires=['aiorpcX>=0.9.0,<0.10', 'attrs',
|
||||
install_requires=['aiorpcX>=0.9.1,<0.10', 'attrs',
|
||||
'plyvel', 'pylru', 'aiohttp >= 2'],
|
||||
packages=setuptools.find_packages(include=('electrumx*',)),
|
||||
description='ElectrumX Server',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user