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.
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
from .. import protobuf as p
|
|
|
|
from .LiskDelegateType import LiskDelegateType
|
|
from .LiskMultisignatureType import LiskMultisignatureType
|
|
from .LiskSignatureType import LiskSignatureType
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import List
|
|
except ImportError:
|
|
List = None # type: ignore
|
|
|
|
|
|
class LiskTransactionAsset(p.MessageType):
|
|
|
|
def __init__(
|
|
self,
|
|
signature: LiskSignatureType = None,
|
|
delegate: LiskDelegateType = None,
|
|
votes: List[str] = None,
|
|
multisignature: LiskMultisignatureType = None,
|
|
data: str = None,
|
|
) -> None:
|
|
self.signature = signature
|
|
self.delegate = delegate
|
|
self.votes = votes if votes is not None else []
|
|
self.multisignature = multisignature
|
|
self.data = data
|
|
|
|
@classmethod
|
|
def get_fields(cls):
|
|
return {
|
|
1: ('signature', LiskSignatureType, 0),
|
|
2: ('delegate', LiskDelegateType, 0),
|
|
3: ('votes', p.UnicodeType, p.FLAG_REPEATED),
|
|
4: ('multisignature', LiskMultisignatureType, 0),
|
|
5: ('data', p.UnicodeType, 0),
|
|
}
|