This commit is contained in:
Peter D. Gray 2023-12-21 10:02:46 -05:00
parent d289bfc7c2
commit 55d5490852
No known key found for this signature in database
GPG Key ID: A2DCD558C2BE5D7C
3 changed files with 4 additions and 4 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()

View File

@ -1,4 +1,4 @@
# Our version for this release.
VERSION_STRING = 5.2.1
VERSION_STRING = 5.2.2