Browse Source

display exception in convert_imported_keys

283
ThomasV 10 years ago
parent
commit
4754241485
  1. 5
      gui/qt/main_window.py

5
gui/qt/main_window.py

@ -248,8 +248,9 @@ class ElectrumWindow(QMainWindow):
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:
self.show_message("error")
except Exception as e:
traceback.print_exc(file=sys.stdout)
self.show_message(str(e))
def open_wallet(self):

Loading…
Cancel
Save