split seed words with newline too
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user