Browse Source

fix: display balance of unused addresses

283
ThomasV 13 years ago
parent
commit
0ed5699021
  1. 2
      watch_address

2
watch_address

@ -18,7 +18,7 @@ while True:
elif method == 'blockchain.address.get_history': elif method == 'blockchain.address.get_history':
confirmed = unconfirmed = 0 confirmed = unconfirmed = 0
h = r.get('result') h = r.get('result')
if not h: if h is None:
continue continue
for item in h: for item in h:
v = item['value'] v = item['value']

Loading…
Cancel
Save