URI: 
       tremove the calculation of address balance 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 83744832d12633afd3a10b8d95d413fd2bbcbe56
   DIR parent a34d9a380c65135ed6e89a6977feba797bf970f6
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Sun,  4 Aug 2013 21:53:37 +0200
       
       remove the calculation of address balance in watch_address
       
       Diffstat:
         M scripts/watch_address               |      17 +++--------------
       
       1 file changed, 3 insertions(+), 14 deletions(-)
       ---
   DIR diff --git a/scripts/watch_address b/scripts/watch_address
       t@@ -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 "---"