1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 13:38:12 +00:00
trezor-firmware/trezorlib/messages/NEMSignedTx.py

19 lines
395 B
Python

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