mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
31 lines
781 B
Python
31 lines
781 B
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
from .BinanceInputOutput import BinanceInputOutput
|
||
|
|
||
|
if __debug__:
|
||
|
try:
|
||
|
from typing import List
|
||
|
except ImportError:
|
||
|
List = None # type: ignore
|
||
|
|
||
|
|
||
|
class BinanceTransferMsg(p.MessageType):
|
||
|
MESSAGE_WIRE_TYPE = 706
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
inputs: List[BinanceInputOutput] = None,
|
||
|
outputs: List[BinanceInputOutput] = None,
|
||
|
) -> None:
|
||
|
self.inputs = inputs if inputs is not None else []
|
||
|
self.outputs = outputs if outputs is not None else []
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
1: ('inputs', BinanceInputOutput, p.FLAG_REPEATED),
|
||
|
2: ('outputs', BinanceInputOutput, p.FLAG_REPEATED),
|
||
|
}
|