(cherry picked from commit 55d5490852)
This commit is contained in:
Peter D. Gray 2023-12-21 16:02:46 +01:00 committed by doc-hex
parent 06869c5304
commit 3ad4262fcf
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
## 5.2.2 - 2023-12-21
- Bugfix: Re-enable `Lock Down Seed` which was disabled by accident
- Bugfix: Re-enable `Lock Down Seed` feature which was disabled by accident
## 5.2.1 - 2023-12-19

View File

@ -566,7 +566,7 @@ async def convert_ephemeral_to_master(*a):
return
words = settings.get("words", True)
_type = 'BIP-39 passphrase ' if bip39_passphrase else 'temporary seed '
_type = 'BIP-39 passphrase' if bip39_passphrase else 'temporary seed'
msg = 'Convert currently used %s to master seed. Old master seed' % _type
if words or bip39_passphrase:
msg += ' words themselves are erased forever, '
@ -585,7 +585,7 @@ async def convert_ephemeral_to_master(*a):
msg += 'The resulting wallet cannot be used with any other passphrase. '
msg += 'A reboot is part of this process. '
msg += ('PIN code, and %s funds are not affected.' % _type)
msg += 'PIN code, and %s funds are not affected.' % _type
if not await ux_confirm(msg):
return await ux_aborted()