commit 7abd902b9233310231af81709dfc143d68cf8a39 parent 2512f5945ae0d00a570d24c52d179796ff4e0d2f Author: ThomasV <thomasv@electrum.org> Date: Sat, 8 Oct 2016 08:34:24 +0200 fix #1959 Diffstat:
M | lib/keystore.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/keystore.py b/lib/keystore.py @@ -214,7 +214,7 @@ class Deterministic_KeyStore(Software_KeyStore): return d def has_seed(self): - return self.seed != '' + return bool(self.seed) def can_change_password(self): return not self.is_watching_only()