From 866342c4d8da40ee9f4e3ca64fbb226a4b36048f Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sat, 18 Aug 2018 13:10:25 +0900 Subject: [PATCH] Require aiorpcX >= 0.7.3 --- electrumx/server/controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrumx/server/controller.py b/electrumx/server/controller.py index 09d022b..79bc8ed 100644 --- a/electrumx/server/controller.py +++ b/electrumx/server/controller.py @@ -80,8 +80,8 @@ class Controller(ServerBase): '''Start the RPC server and wait for the mempool to synchronize. Then start serving external clients. ''' - if not (0, 7, 1) <= aiorpcx_version < (0, 8): - raise RuntimeError('aiorpcX version 0.7.x required with x >= 1') + if not (0, 7, 3) <= aiorpcx_version < (0, 8): + raise RuntimeError('aiorpcX version 0.7.x required with x >= 3') env = self.env min_str, max_str = env.coin.SESSIONCLS.protocol_min_max_strings()