mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 05:58:09 +00:00
23 lines
488 B
Python
23 lines
488 B
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
|
||
|
class OntologySignedTransfer(p.MessageType):
|
||
|
MESSAGE_WIRE_TYPE = 355
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
signature: bytes = None,
|
||
|
payload: bytes = None,
|
||
|
) -> None:
|
||
|
self.signature = signature
|
||
|
self.payload = payload
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
1: ('signature', p.BytesType, 0),
|
||
|
2: ('payload', p.BytesType, 0),
|
||
|
}
|