tfix password bug in wallet upgrade - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit ea1af3d536e39c3e81864f4dd184fef7c6c6a797
DIR parent 883f9be7d15cf1aba16895a0848f0d7af99f2ff3
HTML Author: ThomasV <thomasv@gitorious>
Date: Tue, 3 Mar 2015 10:55:11 +0100
fix password bug in wallet upgrade
Diffstat:
M gui/qt/main_window.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
t@@ -245,7 +245,7 @@ class ElectrumWindow(QMainWindow):
def update_wallet_format(self):
# convert old-format imported keys
if self.wallet.imported_keys:
- password = self.password_dialog(_("Please enter your password in order to update imported keys"))
+ password = self.password_dialog(_("Please enter your password in order to update imported keys")) if self.wallet.use_encryption else None
try:
self.wallet.convert_imported_keys(password)
except: