From 7baaa639080dc60696d927816f9cad6fdab01770 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 20 Mar 2012 07:02:39 +0100 Subject: [PATCH] cleanup --- client/interface.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/client/interface.py b/client/interface.py index 8d3b45ce..18c63ea6 100644 --- a/client/interface.py +++ b/client/interface.py @@ -126,15 +126,14 @@ class Interface: self.tx_event.set() elif method == 'numblocks.subscribe': - print "numblocks", result self.blocks = result if self.newblock_callback: apply(self.newblock_callback,(result,)) - elif method == 'ping': + elif method == 'client.version': pass else: - print "received message:", method, params, result + print "unknown message:", method, params, result def subscribe(self, addresses): @@ -321,7 +320,7 @@ class HttpInterface(PollingInterface): response = response_stream.read() if response: - print "response",response + #print "response",response response = json.loads( response ) if type(response) is not type([]): self.handle_json_response(response)