From: ThomasV Date: Sun, 4 Nov 2012 15:02:34 +0000 (+0400) Subject: fix: rename method subscribe2 X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=commitdiff_plain;h=5f23ed78162f41e990cb3fcb30e9606a15a8d3a6 fix: rename method subscribe2 --- diff --git a/processor.py b/processor.py index 839a770..3761332 100644 --- a/processor.py +++ b/processor.py @@ -268,6 +268,9 @@ class ResponseDispatcher(threading.Thread): method = response.get('method') params = response.get('params') + if method == "blockchain.address.subscribe2": + method = "blockchain.address.subscribe" + # A notification if internal_id is None: # and method is not None and params is not None: self.notification(method, params, response)