mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
40 lines
1.0 KiB
Python
40 lines
1.0 KiB
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
if __debug__:
|
||
|
try:
|
||
|
from typing import List
|
||
|
except ImportError:
|
||
|
List = None # type: ignore
|
||
|
|
||
|
|
||
|
class NEMTransactionCommon(p.MessageType):
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
address_n: List[int] = None,
|
||
|
network: int = None,
|
||
|
timestamp: int = None,
|
||
|
fee: int = None,
|
||
|
deadline: int = None,
|
||
|
signer: bytes = None,
|
||
|
) -> None:
|
||
|
self.address_n = address_n if address_n is not None else []
|
||
|
self.network = network
|
||
|
self.timestamp = timestamp
|
||
|
self.fee = fee
|
||
|
self.deadline = deadline
|
||
|
self.signer = signer
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
1: ('address_n', p.UVarintType, p.FLAG_REPEATED),
|
||
|
2: ('network', p.UVarintType, 0),
|
||
|
3: ('timestamp', p.UVarintType, 0),
|
||
|
4: ('fee', p.UVarintType, 0),
|
||
|
5: ('deadline', p.UVarintType, 0),
|
||
|
6: ('signer', p.BytesType, 0),
|
||
|
}
|