From 660f374e95284028d937576256fad82b4ae7f342 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 0cf88a6ca9..3dbd842656 100755 --- a/core/emu.py +++ b/core/emu.py @@ -282,9 +282,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,