From 09783aeacc3bae679fa599aae14d9bba23260d63 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Thu, 7 Sep 2017 13:13:47 +0900 Subject: [PATCH] Accept protocols down to 0.9 for Electrum 1.x clients Fixes #248 --- server/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/version.py b/server/version.py index f58644f..143a3b2 100644 --- a/server/version.py +++ b/server/version.py @@ -1,5 +1,5 @@ # Server name and protocol versions VERSION = 'ElectrumX 1.0.17' -PROTOCOL_MIN = '0.10' +PROTOCOL_MIN = '0.9' PROTOCOL_MAX = '1.1'