mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
feat(core): show progress before starting to wipe device
This doesn't actually advance the progress while device erase is ongoing, but at least the user sees a loader.
This commit is contained in:
parent
fad653a38b
commit
b5786c2ff6
@ -6,9 +6,10 @@ if TYPE_CHECKING:
|
||||
|
||||
async def wipe_device(msg: WipeDevice) -> Success:
|
||||
import storage
|
||||
from trezor import TR, translations
|
||||
from trezor import TR, config, translations
|
||||
from trezor.enums import ButtonRequestType
|
||||
from trezor.messages import Success
|
||||
from trezor.pin import render_empty_loader
|
||||
from trezor.ui.layouts import confirm_action
|
||||
|
||||
from apps.base import reload_settings_from_storage
|
||||
@ -25,6 +26,9 @@ async def wipe_device(msg: WipeDevice) -> Success:
|
||||
br_code=ButtonRequestType.WipeDevice,
|
||||
)
|
||||
|
||||
# start an empty progress screen so that the screen is not blank while waiting
|
||||
render_empty_loader(config.StorageMessage.PROCESSING_MSG)
|
||||
|
||||
# wipe storage
|
||||
storage.wipe()
|
||||
# erase translations
|
||||
|
Loading…
Reference in New Issue
Block a user