mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +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_():
|
||||
return
|
||||
|
||||
seed = unicode(seed_e.toPlainText())
|
||||
seed = seed_e.toPlainText()
|
||||
seed = unicode(seed.toLower())
|
||||
|
||||
if not seed:
|
||||
QMessageBox.warning(None, _('Error'), _('No seed'), _('OK'))
|
||||
|
|
Loading…
Add table
Reference in a new issue