1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 11:29:11 +00:00
trezor-firmware/python/trezorlib/messages/MoneroTransactionSetOutputAck.py

40 lines
1.1 KiB
Python
Raw Normal View History

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
from .MoneroTransactionRsigData import MoneroTransactionRsigData
2019-07-03 13:02:50 +00:00
if __debug__:
try:
from typing import Dict, List, Optional
except ImportError:
Dict, List, Optional = None, None, None # type: ignore
class MoneroTransactionSetOutputAck(p.MessageType):
MESSAGE_WIRE_TYPE = 512
def __init__(
self,
tx_out: bytes = None,
vouti_hmac: bytes = None,
rsig_data: MoneroTransactionRsigData = None,
out_pk: bytes = None,
ecdh_info: bytes = None,
) -> None:
self.tx_out = tx_out
self.vouti_hmac = vouti_hmac
self.rsig_data = rsig_data
self.out_pk = out_pk
self.ecdh_info = ecdh_info
@classmethod
2019-07-03 13:02:50 +00:00
def get_fields(cls) -> Dict:
return {
1: ('tx_out', p.BytesType, 0),
2: ('vouti_hmac', p.BytesType, 0),
3: ('rsig_data', MoneroTransactionRsigData, 0),
4: ('out_pk', p.BytesType, 0),
5: ('ecdh_info', p.BytesType, 0),
}