URI: 
       tuse auto_cycle in watch_address - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 4a36f25d4bd064f75f64e294ffa4776e4c180655
   DIR parent 8b3c8bdc193bfb6a29cbb1d57d0f9e75f78c8245
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Thu,  1 Aug 2013 10:59:45 +0200
       
       use auto_cycle in watch_address
       
       Diffstat:
         M scripts/watch_address               |       8 ++++----
       
       1 file changed, 4 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/scripts/watch_address b/scripts/watch_address
       t@@ -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)
       t@@ -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
       t@@ -32,6 +32,6 @@ while True:
                        confirmed += v
                    else:
                        unconfirmed += v
       -        print (confirmed+unconfirmed)/1.e8
       +        print "balance:", (confirmed+unconfirmed)/1.e8