don't ask pw if wallet is unencrypted

This commit is contained in:
ThomasV 2013-01-05 22:13:41 +01:00
parent 5a4822a044
commit 1d9c8dc519
1 changed files with 6 additions and 1 deletions

View File

@ -1537,7 +1537,12 @@ class ElectrumWindow(QMainWindow):
text, ok = QInputDialog.getText(self, _('Import private key'), _('Key') + ':')
if not ok: return
sec = str(text)
password = self.password_dialog()
if self.wallet.use_encryption:
password = self.password_dialog()
if not password:
return
else:
password = None
try:
addr = self.wallet.import_key(sec, password)
if not addr: