1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 05:49:11 +00:00
trezor-firmware/python/trezorlib/messages/MoneroTransactionRsigData.py
matejcik cf396e3661 python: return generated files to git
This separates the regeneration step from the build/install step.
This is to simplify bootstrapping: trezorlib is needed in several
build/test steps, and bound to be needed in more. It should be
usable and installable straight from the checkout.
2019-05-17 15:09:58 +02:00

43 lines
1.2 KiB
Python

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
if __debug__:
try:
from typing import List
except ImportError:
List = None # type: ignore
class MoneroTransactionRsigData(p.MessageType):
def __init__(
self,
rsig_type: int = None,
offload_type: int = None,
grouping: List[int] = None,
mask: bytes = None,
rsig: bytes = None,
rsig_parts: List[bytes] = None,
bp_version: int = None,
) -> None:
self.rsig_type = rsig_type
self.offload_type = offload_type
self.grouping = grouping if grouping is not None else []
self.mask = mask
self.rsig = rsig
self.rsig_parts = rsig_parts if rsig_parts is not None else []
self.bp_version = bp_version
@classmethod
def get_fields(cls):
return {
1: ('rsig_type', p.UVarintType, 0),
2: ('offload_type', p.UVarintType, 0),
3: ('grouping', p.UVarintType, p.FLAG_REPEATED),
4: ('mask', p.BytesType, 0),
5: ('rsig', p.BytesType, 0),
6: ('rsig_parts', p.BytesType, p.FLAG_REPEATED),
7: ('bp_version', p.UVarintType, 0),
}