mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 09:45:18 +00:00
Squash case on user-entered seed when restoring a wallet.
This commit is contained in:
parent
c7ad369e55
commit
af71483dd8
1 changed files with 2 additions and 1 deletions
|
@ -127,7 +127,8 @@ class InstallWizard(QDialog):
|
||||||
if not self.exec_():
|
if not self.exec_():
|
||||||
return
|
return
|
||||||
|
|
||||||
seed = unicode(seed_e.toPlainText())
|
seed = seed_e.toPlainText()
|
||||||
|
seed = unicode(seed.toLower())
|
||||||
|
|
||||||
if not seed:
|
if not seed:
|
||||||
QMessageBox.warning(None, _('Error'), _('No seed'), _('OK'))
|
QMessageBox.warning(None, _('Error'), _('No seed'), _('OK'))
|
||||||
|
|
Loading…
Add table
Reference in a new issue