From 3853252638ddc4cfe44bfa7a9134f01e6303b379 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Tue, 4 Feb 2025 14:55:54 +0100 Subject: [PATCH] chore(core): adapt emu.py to the new trezorlib [no changelog] --- core/emu.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/emu.py b/core/emu.py index f635c12e17..445f01060a 100755 --- a/core/emu.py +++ b/core/emu.py @@ -286,9 +286,10 @@ def cli( label = "Emulator" assert emulator.client is not None - trezorlib.device.wipe(emulator.client) + trezorlib.device.wipe(emulator.client.get_seedless_session()) + trezorlib.debuglink.load_device( - emulator.client, + emulator.client.get_seedless_session(), mnemonics, pin=None, passphrase_protection=False,