use auto_cycle in watch_address
authorthomasv <thomasv@gitorious>
Thu, 1 Aug 2013 08:59:45 +0000 (10:59 +0200)
committerthomasv <thomasv@gitorious>
Thu, 1 Aug 2013 08:59:45 +0000 (10:59 +0200)
scripts/watch_address

index 6ab1e39..1119558 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,8 +18,8 @@ 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])])
+        #print r
         
     elif method == 'blockchain.address.get_history':
         confirmed = unconfirmed = 0
@@ -32,6 +32,6 @@ while True:
                 confirmed += v
             else:
                 unconfirmed += v
-        print (confirmed+unconfirmed)/1.e8
+        print "balance:", (confirmed+unconfirmed)/1.e8