1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-19 05:58:09 +00:00
trezor-firmware/python/trezorlib/messages/TronVoteWitnessContract.py

27 lines
536 B
Python
Raw Normal View History

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
from .TronVote import TronVote
if __debug__:
try:
from typing import List
except ImportError:
List = None # type: ignore
class TronVoteWitnessContract(p.MessageType):
def __init__(
self,
votes: List[TronVote] = None,
) -> None:
self.votes = votes if votes is not None else []
@classmethod
def get_fields(cls):
return {
1: ('votes', TronVote, p.FLAG_REPEATED),
}