This commit is contained in:
ThomasV 2012-03-20 07:02:39 +01:00
parent f487e27416
commit 7baaa63908
1 changed files with 3 additions and 4 deletions

View File

@ -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)