mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
cf396e3661
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.
34 lines
965 B
Python
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),
|
|
}
|