mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-23 07:58:09 +00:00
19 lines
361 B
Python
19 lines
361 B
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
|
||
|
class TronWitnessUpdateContract(p.MessageType):
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
update_url: str = None,
|
||
|
) -> None:
|
||
|
self.update_url = update_url
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
2: ('update_url', p.UnicodeType, 0),
|
||
|
}
|