move synchronous_get to network.py, fix get_balance script
[electrum-nvc.git] / scripts / watch_address
index 6ab1e39..51fe8f9 100755 (executable)
@@ -9,7 +9,7 @@ except:
     print "usage: watch_address <bitcoin_address>"
     sys.exit(1)
 
-i = Interface({'server':'ecdsa.org:50001:t'})
+i = Interface()
 i.start()
 i.send([('blockchain.address.subscribe',[addr])] )
 time.sleep(1)
@@ -18,20 +18,9 @@ while True:
     r = i.get_response()
     method = r.get('method') 
     if method == 'blockchain.address.subscribe':
-        #i.send([('blockchain.address.get_history',[addr])])
-        print r
+        i.send([('blockchain.address.get_history',[addr])])
         
     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 (confirmed+unconfirmed)/1.e8
-
-
+        for line in r.get('result'):
+            print line
+        print "---"