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/MoneroTransactionSignInputRequest.py
2019-07-09 12:51:48 +02:00

46 lines
1.4 KiB
Python

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry
if __debug__:
try:
from typing import Dict, List, Optional
except ImportError:
Dict, List, Optional = None, None, None # type: ignore
class MoneroTransactionSignInputRequest(p.MessageType):
MESSAGE_WIRE_TYPE = 515
def __init__(
self,
src_entr: MoneroTransactionSourceEntry = None,
vini: bytes = None,
vini_hmac: bytes = None,
pseudo_out: bytes = None,
pseudo_out_hmac: bytes = None,
pseudo_out_alpha: bytes = None,
spend_key: bytes = None,
) -> None:
self.src_entr = src_entr
self.vini = vini
self.vini_hmac = vini_hmac
self.pseudo_out = pseudo_out
self.pseudo_out_hmac = pseudo_out_hmac
self.pseudo_out_alpha = pseudo_out_alpha
self.spend_key = spend_key
@classmethod
def get_fields(cls) -> Dict:
return {
1: ('src_entr', MoneroTransactionSourceEntry, 0),
2: ('vini', p.BytesType, 0),
3: ('vini_hmac', p.BytesType, 0),
4: ('pseudo_out', p.BytesType, 0),
5: ('pseudo_out_hmac', p.BytesType, 0),
6: ('pseudo_out_alpha', p.BytesType, 0),
7: ('spend_key', p.BytesType, 0),
}