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.
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
from .. import protobuf as p
|
|
|
|
from .TezosBallotOp import TezosBallotOp
|
|
from .TezosDelegationOp import TezosDelegationOp
|
|
from .TezosOriginationOp import TezosOriginationOp
|
|
from .TezosProposalOp import TezosProposalOp
|
|
from .TezosRevealOp import TezosRevealOp
|
|
from .TezosTransactionOp import TezosTransactionOp
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import List
|
|
except ImportError:
|
|
List = None # type: ignore
|
|
|
|
|
|
class TezosSignTx(p.MessageType):
|
|
MESSAGE_WIRE_TYPE = 152
|
|
|
|
def __init__(
|
|
self,
|
|
address_n: List[int] = None,
|
|
branch: bytes = None,
|
|
reveal: TezosRevealOp = None,
|
|
transaction: TezosTransactionOp = None,
|
|
origination: TezosOriginationOp = None,
|
|
delegation: TezosDelegationOp = None,
|
|
proposal: TezosProposalOp = None,
|
|
ballot: TezosBallotOp = None,
|
|
) -> None:
|
|
self.address_n = address_n if address_n is not None else []
|
|
self.branch = branch
|
|
self.reveal = reveal
|
|
self.transaction = transaction
|
|
self.origination = origination
|
|
self.delegation = delegation
|
|
self.proposal = proposal
|
|
self.ballot = ballot
|
|
|
|
@classmethod
|
|
def get_fields(cls):
|
|
return {
|
|
1: ('address_n', p.UVarintType, p.FLAG_REPEATED),
|
|
2: ('branch', p.BytesType, 0),
|
|
3: ('reveal', TezosRevealOp, 0),
|
|
4: ('transaction', TezosTransactionOp, 0),
|
|
5: ('origination', TezosOriginationOp, 0),
|
|
6: ('delegation', TezosDelegationOp, 0),
|
|
7: ('proposal', TezosProposalOp, 0),
|
|
8: ('ballot', TezosBallotOp, 0),
|
|
}
|