tfix typo - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit fb6a74e03472026249937b189e8b6bd5f11e6c7d
DIR parent 3188ff05a3a6b1dfc6a64ec2ac79dc6633a1270a
HTML Author: ThomasV <thomasv@gitorious>
Date: Tue, 2 Jun 2015 16:49:21 +0200
fix typo
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@@ -1302,7 +1302,7 @@ class Imported_Wallet(Abstract_Wallet):
def is_watching_only(self):
acc = self.accounts[IMPORTED_ACCOUNT]
n = acc.keypairs.values()
- return n > 0 and n == [[None, None]] * len(n)
+ return len(n) > 0 and n == [[None, None]] * len(n)
def has_seed(self):
return False