1
0

allow arbitrary derivations with bip39 seeds, to let multibit users recover funds

This commit is contained in:
ThomasV
2017-06-20 10:47:02 +02:00
parent 2d48aa35af
commit 6b45070b2f
3 changed files with 26 additions and 17 deletions

View File

@@ -453,7 +453,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
line = QLineEdit()
line.setText(default)
def f(text):
self.next_button.setEnabled(test(text))
self.next_button.setEnabled(test(unicode(text)))
line.textEdited.connect(f)
vbox.addWidget(line)
vbox.addWidget(WWLabel(warning))