forked from LBRYCommunity/lbry-sdk
set wallet server min/max 0.52.0-0.99.0
This commit is contained in:
parent
79557bb878
commit
78732513c8
1 changed files with 2 additions and 2 deletions
|
@ -775,8 +775,8 @@ class LBRYSessionManager(SessionManager):
|
||||||
class LBRYElectrumX(SessionBase):
|
class LBRYElectrumX(SessionBase):
|
||||||
"""A TCP server that handles incoming Electrum connections."""
|
"""A TCP server that handles incoming Electrum connections."""
|
||||||
|
|
||||||
PROTOCOL_MIN = lbry.version
|
PROTOCOL_MIN = (0, 52, 0)
|
||||||
PROTOCOL_MAX = (1, 0)
|
PROTOCOL_MAX = (0, 99, 0)
|
||||||
max_errors = math.inf # don't disconnect people for errors! let them happen...
|
max_errors = math.inf # don't disconnect people for errors! let them happen...
|
||||||
session_mgr: LBRYSessionManager
|
session_mgr: LBRYSessionManager
|
||||||
version = lbry.__version__
|
version = lbry.__version__
|
||||||
|
|
Loading…
Reference in a new issue