URI: 
       tMerge commit 'refs/merge-requests/2' of git://gitorious.org/electrum/electrum into merge-requests/11 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit f695de9c3fa2bea0ab99e5fcffff70492d5f6efb
   DIR parent 1c75dae159a6a043ff167bb53d2f89132dc9d194
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Tue, 17 Jan 2012 12:50:20 +0300
       
       Merge commit 'refs/merge-requests/2' of git://gitorious.org/electrum/electrum into merge-requests/11
       
       Diffstat:
         M client/electrum.py                  |      28 ++++++++++++++++++++++------
       
       1 file changed, 22 insertions(+), 6 deletions(-)
       ---
   DIR diff --git a/client/electrum.py b/client/electrum.py
       t@@ -571,7 +571,10 @@ class Wallet:
                    return False, "The last %d addresses in your list have never been used. You should use them first, or increase the allowed gap size in your preferences. "%self.gap_limit
        
            def get_addr_balance(self, addr):
       -        h = self.history.get(addr)
       +        if addr in self.addresses:
       +            h = self.history.get(addr)
       +        else:
       +            h = self.interface.retrieve_history(addr)
                if not h: return 0,0
                c = u = 0
                for item in h:
       t@@ -890,7 +893,8 @@ if __name__ == '__main__':
                    print "known commands:", ', '.join(known_commands)
                    print "help <command> shows the help on a specific command"
                elif cmd2 == 'balance':
       -            print "display the balance of your wallet"
       +            print "Display the balance of your wallet or a specific address. The address does not have to be a owned address (you know the private key)."
       +            print "syntax: balance [<address>]"
                elif cmd2 == 'contacts':
                    print "show your list of contacts"
                elif cmd2 == 'payto':
       t@@ -928,11 +932,23 @@ if __name__ == '__main__':
                print wallet.is_valid(addr)
        
            elif cmd == 'balance':
       -        c, u = wallet.get_balance()
       -        if u:
       -            print c*1e-8, u*1e-8
       +        try:
       +            addrs = args[1:]
       +        except:
       +            pass
       +        if addrs == []:
       +            c, u = wallet.get_balance()
       +            if u:
       +                print c*1e-8, u*1e-8
       +            else:
       +                print c*1e-8
                else:
       -            print c*1e-8
       +            for addr in addrs:
       +                c, u = wallet.get_addr_balance(addr)
       +                if u:
       +                    print "%s %s, %s" % (addr, c*1e-8, u*1e-8)
       +                else:
       +                    print "%s %s" % (addr, c*1e-8)
        
            elif cmd in [ 'contacts']:
                for addr in wallet.addressbook: