use auto_cycle in watch_address

This commit is contained in:
thomasv 2013-08-01 10:59:45 +02:00
parent 8b3c8bdc19
commit 4a36f25d4b
1 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ except:
print "usage: watch_address <bitcoin_address>" print "usage: watch_address <bitcoin_address>"
sys.exit(1) sys.exit(1)
i = Interface({'server':'ecdsa.org:50001:t'}) i = Interface()
i.start() i.start()
i.send([('blockchain.address.subscribe',[addr])] ) i.send([('blockchain.address.subscribe',[addr])] )
time.sleep(1) time.sleep(1)
@ -18,8 +18,8 @@ while True:
r = i.get_response() r = i.get_response()
method = r.get('method') method = r.get('method')
if method == 'blockchain.address.subscribe': if method == 'blockchain.address.subscribe':
#i.send([('blockchain.address.get_history',[addr])]) i.send([('blockchain.address.get_history',[addr])])
print r #print r
elif method == 'blockchain.address.get_history': elif method == 'blockchain.address.get_history':
confirmed = unconfirmed = 0 confirmed = unconfirmed = 0
@ -32,6 +32,6 @@ while True:
confirmed += v confirmed += v
else: else:
unconfirmed += v unconfirmed += v
print (confirmed+unconfirmed)/1.e8 print "balance:", (confirmed+unconfirmed)/1.e8