1
0

disable bip32

This commit is contained in:
thomasv
2013-10-31 13:28:52 +01:00
parent 5cb1d6afda
commit 5a3b80cfb2
2 changed files with 16 additions and 11 deletions

View File

@@ -75,7 +75,7 @@ class InstallWizard(QDialog):
if not r:
return
if r != wallet.seed:
if r != wallet.get_mnemonic(None):
QMessageBox.warning(None, _('Error'), _('Incorrect seed'), _('OK'))
return False
else:
@@ -232,7 +232,7 @@ class InstallWizard(QDialog):
def show_seed(self, wallet):
from seed_dialog import make_seed_dialog
vbox = make_seed_dialog(wallet.seed, wallet.imported_keys)
vbox = make_seed_dialog(wallet.get_mnemonic(None), wallet.imported_keys)
vbox.addLayout(ok_cancel_buttons(self, _("Next")))
if self.layout(): QWidget().setLayout(self.layout())