mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 05:58:09 +00:00
cf396e3661
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.
37 lines
983 B
Python
37 lines
983 B
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
from .. import protobuf as p
|
|
|
|
from .MoneroTransactionData import MoneroTransactionData
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import List
|
|
except ImportError:
|
|
List = None # type: ignore
|
|
|
|
|
|
class MoneroTransactionInitRequest(p.MessageType):
|
|
MESSAGE_WIRE_TYPE = 501
|
|
|
|
def __init__(
|
|
self,
|
|
version: int = None,
|
|
address_n: List[int] = None,
|
|
network_type: int = None,
|
|
tsx_data: MoneroTransactionData = None,
|
|
) -> None:
|
|
self.version = version
|
|
self.address_n = address_n if address_n is not None else []
|
|
self.network_type = network_type
|
|
self.tsx_data = tsx_data
|
|
|
|
@classmethod
|
|
def get_fields(cls):
|
|
return {
|
|
1: ('version', p.UVarintType, 0),
|
|
2: ('address_n', p.UVarintType, p.FLAG_REPEATED),
|
|
3: ('network_type', p.UVarintType, 0),
|
|
4: ('tsx_data', MoneroTransactionData, 0),
|
|
}
|