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/MessageSignature.py

23 lines
481 B
Python
Raw Normal View History

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