From 16aa18cccca26d08b9a78ac87539b0a0abcad87e Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Tue, 6 Sep 2022 14:58:14 +0200 Subject: [PATCH] boot.py, gitignore --- core/.gitignore | 2 ++ core/src/boot.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/core/.gitignore b/core/.gitignore index b48f5043bb..84ac4e148f 100644 --- a/core/.gitignore +++ b/core/.gitignore @@ -8,3 +8,5 @@ tests/trezor_monero_tests* .coverage.* htmlcov/ mypy_report +/cmake-build-debug/ +/CMakeLists.txt diff --git a/core/src/boot.py b/core/src/boot.py index 6f6caf5ccb..56ebbfb39d 100644 --- a/core/src/boot.py +++ b/core/src/boot.py @@ -30,8 +30,8 @@ async def bootscreen() -> None: config.init(show_pin_timeout) -if __debug__ and not utils.EMULATOR: - config.wipe() +# if __debug__ and not utils.EMULATOR: +# config.wipe() loop.schedule(bootscreen()) loop.run()