mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-04 21:05:11 +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')
|
||||
except:
|
||||
try:
|
||||
seed = mnemonic.mn_decode( seed.split(' ') )
|
||||
seed = mnemonic.mn_decode( seed.split() )
|
||||
except:
|
||||
QMessageBox.warning(None, _('Error'), _('I cannot decode this'), _('OK'))
|
||||
return
|
||||
|
|
Loading…
Add table
Reference in a new issue