tfix #492 - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 69756422271ad06e3d3592eb7002c60927f77704
DIR parent 3467bd0101c664c9dd39e85a3f882ebd5ed04c6f
HTML Author: ThomasV <thomasv@gitorious>
Date: Fri, 13 Dec 2013 06:29:51 +0100
fix #492
Diffstat:
M electrum | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
DIR diff --git a/electrum b/electrum
t@@ -275,7 +275,10 @@ if __name__ == '__main__':
# commands needing password
if cmd.requires_password:
- if wallet.use_encryption:
+ if wallet.seed == '':
+ seed = ''
+ password = None
+ elif wallet.use_encryption:
password = prompt_password('Password:', False)
if not password:
print_msg("Error: Password required")