mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
22 lines
500 B
Python
22 lines
500 B
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry
|
||
|
|
||
|
|
||
|
class MoneroTransactionSetInputRequest(p.MessageType):
|
||
|
MESSAGE_WIRE_TYPE = 503
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
src_entr: MoneroTransactionSourceEntry = None,
|
||
|
) -> None:
|
||
|
self.src_entr = src_entr
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
1: ('src_entr', MoneroTransactionSourceEntry, 0),
|
||
|
}
|