From 8d28bb5a6660711ddeab058f89bed82c7be1f1c8 Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Mon, 20 Jan 2020 12:53:10 -0500 Subject: [PATCH] bump min protocol version --- lbry/wallet/network.py | 2 +- lbry/wallet/server/session.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lbry/wallet/network.py b/lbry/wallet/network.py index 1448f1db0..176c1cbba 100644 --- a/lbry/wallet/network.py +++ b/lbry/wallet/network.py @@ -148,7 +148,7 @@ class ClientSession(BaseClientSession): class Network: PROTOCOL_VERSION = __version__ - MINIMUM_REQUIRED = (0, 53, 2) + MINIMUM_REQUIRED = (0, 54, 0) def __init__(self, ledger): self.ledger = ledger diff --git a/lbry/wallet/server/session.py b/lbry/wallet/server/session.py index 63b279d40..369f5b4d6 100644 --- a/lbry/wallet/server/session.py +++ b/lbry/wallet/server/session.py @@ -773,7 +773,7 @@ class LBRYSessionManager(SessionManager): class LBRYElectrumX(SessionBase): """A TCP server that handles incoming Electrum connections.""" - PROTOCOL_MIN = (0, 52, 0) + PROTOCOL_MIN = (0, 54, 0) PROTOCOL_MAX = (0, 99, 0) max_errors = math.inf # don't disconnect people for errors! let them happen... session_mgr: LBRYSessionManager