mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-01 20:32:35 +00:00

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.
68 lines
2.2 KiB
Python
68 lines
2.2 KiB
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
from .. import protobuf as p
|
|
|
|
from .TxInputType import TxInputType
|
|
from .TxOutputBinType import TxOutputBinType
|
|
from .TxOutputType import TxOutputType
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import List
|
|
except ImportError:
|
|
List = None # type: ignore
|
|
|
|
|
|
class TransactionType(p.MessageType):
|
|
|
|
def __init__(
|
|
self,
|
|
version: int = None,
|
|
inputs: List[TxInputType] = None,
|
|
bin_outputs: List[TxOutputBinType] = None,
|
|
lock_time: int = None,
|
|
outputs: List[TxOutputType] = None,
|
|
inputs_cnt: int = None,
|
|
outputs_cnt: int = None,
|
|
extra_data: bytes = None,
|
|
extra_data_len: int = None,
|
|
expiry: int = None,
|
|
overwintered: bool = None,
|
|
version_group_id: int = None,
|
|
timestamp: int = None,
|
|
branch_id: int = None,
|
|
) -> None:
|
|
self.version = version
|
|
self.inputs = inputs if inputs is not None else []
|
|
self.bin_outputs = bin_outputs if bin_outputs is not None else []
|
|
self.lock_time = lock_time
|
|
self.outputs = outputs if outputs is not None else []
|
|
self.inputs_cnt = inputs_cnt
|
|
self.outputs_cnt = outputs_cnt
|
|
self.extra_data = extra_data
|
|
self.extra_data_len = extra_data_len
|
|
self.expiry = expiry
|
|
self.overwintered = overwintered
|
|
self.version_group_id = version_group_id
|
|
self.timestamp = timestamp
|
|
self.branch_id = branch_id
|
|
|
|
@classmethod
|
|
def get_fields(cls):
|
|
return {
|
|
1: ('version', p.UVarintType, 0),
|
|
2: ('inputs', TxInputType, p.FLAG_REPEATED),
|
|
3: ('bin_outputs', TxOutputBinType, p.FLAG_REPEATED),
|
|
4: ('lock_time', p.UVarintType, 0),
|
|
5: ('outputs', TxOutputType, p.FLAG_REPEATED),
|
|
6: ('inputs_cnt', p.UVarintType, 0),
|
|
7: ('outputs_cnt', p.UVarintType, 0),
|
|
8: ('extra_data', p.BytesType, 0),
|
|
9: ('extra_data_len', p.UVarintType, 0),
|
|
10: ('expiry', p.UVarintType, 0),
|
|
11: ('overwintered', p.BoolType, 0),
|
|
12: ('version_group_id', p.UVarintType, 0),
|
|
13: ('timestamp', p.UVarintType, 0),
|
|
14: ('branch_id', p.UVarintType, 0),
|
|
}
|