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()