1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-15 04:19:22 +00:00
trezor-firmware/python/trezorlib/messages/NEMSignedTx.py

23 lines
464 B
Python
Raw Normal View History

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
class NEMSignedTx(p.MessageType):
MESSAGE_WIRE_TYPE = 70
def __init__(
self,
data: bytes = None,
signature: bytes = None,
) -> None:
self.data = data
self.signature = signature
@classmethod
def get_fields(cls):
return {
1: ('data', p.BytesType, 0),
2: ('signature', p.BytesType, 0),
}