remove the calculation of address balance in watch_address
authorThomasV <thomasv@gitorious>
Sun, 4 Aug 2013 19:53:37 +0000 (21:53 +0200)
committerThomasV <thomasv@gitorious>
Sun, 4 Aug 2013 19:53:37 +0000 (21:53 +0200)
scripts/watch_address

index 1119558..51fe8f9 100755 (executable)
@@ -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 "---"