mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-07 05:02:38 +00:00
17 lines
319 B
Python
17 lines
319 B
Python
![]() |
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
import protobuf as p
|
||
|
|
||
|
|
||
|
class CardanoTxAck(p.MessageType):
|
||
|
MESSAGE_WIRE_TYPE = 309
|
||
|
FIELDS = {
|
||
|
1: ('transaction', p.BytesType, 0),
|
||
|
}
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
transaction: bytes = None,
|
||
|
) -> None:
|
||
|
self.transaction = transaction
|