1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-24 05:12:02 +00:00

Fix failing emulator - missing parameter

This commit is contained in:
M1nd3r 2024-03-11 15:53:27 +01:00 committed by M1nd3r
parent 108d9ec89b
commit a9fe3a36f7

View File

@ -73,7 +73,7 @@ class Context:
def read_from_wire(self) -> Awaitable[Message]: def read_from_wire(self) -> Awaitable[Message]:
"""Read a whole message from the wire without parsing it.""" """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: if TYPE_CHECKING: