URI: 
       tfix is_watching_only for imported wallets - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit cf1fbbf3ad67eb506bf729a6a686a8f76afe85d9
   DIR parent 063fc4bb2edcf38ff87b77f6ea21553e2762ac27
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Mon, 27 Oct 2014 15:47:10 +0100
       
       fix is_watching_only for imported wallets
       
       Diffstat:
         M lib/wallet.py                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -1043,7 +1043,7 @@ class Imported_Wallet(Abstract_Wallet):
            def is_watching_only(self):
                acc = self.accounts[IMPORTED_ACCOUNT]
                n = acc.keypairs.values()
       -        return n == [(None, None)] * len(n)
       +        return n == [[None, None]] * len(n)
        
            def has_seed(self):
                return False