mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-24 13:22:05 +00:00
Fix failing emulator - missing parameter
This commit is contained in:
parent
108d9ec89b
commit
a9fe3a36f7
@ -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:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user