From fec2ee1d8f2590a2ef5c970326e378415b4f6d6e Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Mon, 9 Apr 2018 08:32:32 +0900 Subject: [PATCH] Set PROTOCOL_MIN to 1.0 Earlier protocol versions are used by 2.9.x clients of Electrum and Electron Cash. They all have the local daemon vulnerability, so it seems a good time to phase out support for those clients. --- server/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/controller.py b/server/controller.py index 337be4c..a488eae 100644 --- a/server/controller.py +++ b/server/controller.py @@ -46,7 +46,7 @@ class Controller(ServerBase): ''' CATCHING_UP, LISTENING, PAUSED, SHUTTING_DOWN = range(4) - PROTOCOL_MIN = '0.9' + PROTOCOL_MIN = '1.0' PROTOCOL_MAX = '1.2' VERSION = 'ElectrumX 1.4'