remove the calculation of address balance in watch_address

This commit is contained in:
ThomasV 2013-08-04 21:53:37 +02:00
parent a34d9a380c
commit 83744832d1
1 changed files with 3 additions and 14 deletions

View File

@ -19,19 +19,8 @@ while True:
method = r.get('method')
if method == 'blockchain.address.subscribe':
i.send([('blockchain.address.get_history',[addr])])
#print r
elif method == 'blockchain.address.get_history':
confirmed = unconfirmed = 0
h = r.get('result')
if h is None:
continue
for item in h:
v = item['value']
if item['height']:
confirmed += v
else:
unconfirmed += v
print "balance:", (confirmed+unconfirmed)/1.e8
for line in r.get('result'):
print line
print "---"