From 5f23ed78162f41e990cb3fcb30e9606a15a8d3a6 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 4 Nov 2012 19:02:34 +0400 Subject: [PATCH] fix: rename method subscribe2 --- processor.py | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) 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) -- 1.7.1