pep8
[electrum-nvc.git] / scripts / watch_address
index 50c3f5d..51fe8f9 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
-import sys
-from electrum import TcpStratumInterface
+import sys, time
+from electrum import Interface
 
 try:
     addr = sys.argv[1]
@@ -9,27 +9,18 @@ except:
     print "usage: watch_address <bitcoin_address>"
     sys.exit(1)
 
-i = TcpStratumInterface('electrum.novit.ro', 50001)
-i.init_socket()
+i = Interface()
 i.start()
-i.send([('blockchain.address.subscribe',[addr])])
+i.send([('blockchain.address.subscribe',[addr])] )
+time.sleep(1)
 
 while True:
-    r = i.responses.get(True, 100000000000)
+    r = i.get_response()
     method = r.get('method') 
     if method == 'blockchain.address.subscribe':
         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 "---"