From a9fe3a36f7f2f10833c469b61ff396c0b5c1e7f9 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Mon, 11 Mar 2024 15:53:27 +0100 Subject: [PATCH] Fix failing emulator - missing parameter --- core/src/trezor/wire/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/trezor/wire/context.py b/core/src/trezor/wire/context.py index badff42de6..e5a40bab7c 100644 --- a/core/src/trezor/wire/context.py +++ b/core/src/trezor/wire/context.py @@ -73,7 +73,7 @@ class Context: def read_from_wire(self) -> Awaitable[Message]: """Read a whole message from the wire without parsing it.""" - return WireProtocol.read_message(self.iface, self.buffer) + return WireProtocol.read_message(self, self.iface, self.buffer) if TYPE_CHECKING: