From c205d807621c1380c4bbaa2c9458a85f9c2f886a 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 badff42de..e5a40bab7 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: