1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-19 04:48:12 +00:00

core: raise error on setting passphrase-on-device without passphrase

This commit is contained in:
matejcik 2020-07-23 16:46:54 +02:00 committed by matejcik
parent 58f460627f
commit 57b08c98ed

View File

@ -43,10 +43,9 @@ async def apply_settings(ctx: wire.Context, msg: ApplySettings):
await require_confirm_change_passphrase(ctx, msg.use_passphrase)
storage.device.set_passphrase_enabled(msg.use_passphrase)
if (
storage.device.is_passphrase_enabled()
and msg.passphrase_always_on_device is not None
):
if msg.passphrase_always_on_device is not None:
if not storage.device.is_passphrase_enabled():
raise wire.DataError("Passphrase is not enabled")
await require_confirm_change_passphrase_source(
ctx, msg.passphrase_always_on_device
)