1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-26 01:18:28 +00:00

core/recovery: properly replace homescreens

This commit is contained in:
matejcik 2019-11-04 15:33:38 +01:00 committed by matejcik
parent 1c59ba9423
commit 7cb125d1cb
2 changed files with 11 additions and 5 deletions

View File

@ -1,4 +1,4 @@
from trezor import config, ui, wire
from trezor import config, ui, wire, workflow
from trezor.messages import ButtonRequestType
from trezor.messages.Success import Success
from trezor.pin import pin_to_int
@ -12,7 +12,10 @@ from apps.common.request_pin import (
show_pin_invalid,
)
from apps.common.storage import device as storage_device, recovery as storage_recovery
from apps.management.recovery_device.homescreen import recovery_process
from apps.management.recovery_device.homescreen import (
recovery_homescreen,
recovery_process,
)
if False:
from trezor.messages.RecoveryDevice import RecoveryDevice
@ -55,6 +58,7 @@ async def recovery_device(ctx: wire.Context, msg: RecoveryDevice) -> Success:
if msg.dry_run:
storage_recovery.set_dry_run(msg.dry_run)
workflow.replace_default(recovery_homescreen)
return await recovery_process(ctx)

View File

@ -24,6 +24,10 @@ if False:
async def recovery_homescreen() -> None:
if not storage.recovery.is_in_progress():
workflow.replace_default(homescreen)
return
# recovery process does not communicate on the wire
ctx = wire.DummyContext()
await recovery_process(ctx)
@ -31,16 +35,14 @@ async def recovery_homescreen() -> None:
async def recovery_process(ctx: wire.GenericContext) -> Success:
try:
result = await _continue_recovery_process(ctx)
return await _continue_recovery_process(ctx)
except recover.RecoveryAborted:
dry_run = storage_recovery.is_dry_run()
if dry_run:
storage_recovery.end_progress()
else:
storage.wipe()
workflow.replace_default(homescreen)
raise wire.ActionCancelled("Cancelled")
return result
async def _continue_recovery_process(ctx: wire.GenericContext) -> Success: