1
0

follow-up of wallet.get_private_key() -> wallet.export_private_key()

This commit is contained in:
SomberNight
2017-10-04 23:22:33 +02:00
parent 3d54011c5d
commit 4aa385e0b3
3 changed files with 5 additions and 4 deletions

View File

@@ -2134,7 +2134,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
time.sleep(0.1)
if done:
break
private_keys[addr] = "\n".join(self.wallet.get_private_key(addr, password))
privkey = self.wallet.export_private_key(addr, password)[0]
private_keys[addr] = privkey
self.computing_privkeys_signal.emit()
self.show_privkeys_signal.emit()