mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-10 12:39:51 +00:00
split seed words with newline too
This commit is contained in:
parent
a0d86982b1
commit
1964124515
1 changed files with 1 additions and 1 deletions
|
@ -2355,7 +2355,7 @@ class ElectrumGui:
|
||||||
seed.decode('hex')
|
seed.decode('hex')
|
||||||
except:
|
except:
|
||||||
try:
|
try:
|
||||||
seed = mnemonic.mn_decode( seed.split(' ') )
|
seed = mnemonic.mn_decode( seed.split() )
|
||||||
except:
|
except:
|
||||||
QMessageBox.warning(None, _('Error'), _('I cannot decode this'), _('OK'))
|
QMessageBox.warning(None, _('Error'), _('I cannot decode this'), _('OK'))
|
||||||
return
|
return
|
||||||
|
|
Loading…
Add table
Reference in a new issue