remove the calculation of address balance in watch_address
This commit is contained in:
@@ -19,19 +19,8 @@ while True:
|
|||||||
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
|
|
||||||
|
|
||||||
elif method == 'blockchain.address.get_history':
|
elif method == 'blockchain.address.get_history':
|
||||||
confirmed = unconfirmed = 0
|
for line in r.get('result'):
|
||||||
h = r.get('result')
|
print line
|
||||||
if h is None:
|
print "---"
|
||||||
continue
|
|
||||||
for item in h:
|
|
||||||
v = item['value']
|
|
||||||
if item['height']:
|
|
||||||
confirmed += v
|
|
||||||
else:
|
|
||||||
unconfirmed += v
|
|
||||||
print "balance:", (confirmed+unconfirmed)/1.e8
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user