1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-15 04:19:22 +00:00
trezor-firmware/python/trezorlib/messages/MoneroTransactionSignInputRequest.py
matejcik cf396e3661 python: return generated files to git
This separates the regeneration step from the build/install step.
This is to simplify bootstrapping: trezorlib is needed in several
build/test steps, and bound to be needed in more. It should be
usable and installable straight from the checkout.
2019-05-17 15:09:58 +02:00

40 lines
1.2 KiB
Python

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry
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):
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),
}