1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-16 04:49:08 +00:00
trezor-firmware/python/trezorlib/messages/MoneroTransactionInputViniRequest.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

34 lines
965 B
Python

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry
class MoneroTransactionInputViniRequest(p.MessageType):
MESSAGE_WIRE_TYPE = 507
def __init__(
self,
src_entr: MoneroTransactionSourceEntry = None,
vini: bytes = None,
vini_hmac: bytes = None,
pseudo_out: bytes = None,
pseudo_out_hmac: 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
@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),
}