mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-27 01:48:17 +00:00
apps.homescreen: handle Ping.passphrase_protection
This commit is contained in:
parent
059315feb4
commit
5da3e67a0c
@ -38,9 +38,12 @@ async def respond_Pong(session_id, msg):
|
|||||||
from apps.common.request_pin import protect_by_pin
|
from apps.common.request_pin import protect_by_pin
|
||||||
await protect_by_pin(session_id)
|
await protect_by_pin(session_id)
|
||||||
|
|
||||||
|
if msg.passphrase_protection:
|
||||||
|
from apps.common.request_passphrase import protect_by_passphrase
|
||||||
|
await protect_by_passphrase(session_id)
|
||||||
|
|
||||||
# TODO: handle other fields:
|
# TODO: handle other fields:
|
||||||
# button_protection
|
# button_protection
|
||||||
# passphrase_protection
|
|
||||||
return s
|
return s
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user