mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-05 14:22:33 +00:00
21 lines
550 B
Python
21 lines
550 B
Python
# Automatically generated by pb2py
|
|
from .. import protobuf as p
|
|
|
|
|
|
class TxRequestSerializedType(p.MessageType):
|
|
FIELDS = {
|
|
1: ('signature_index', p.UVarintType, 0),
|
|
2: ('signature', p.BytesType, 0),
|
|
3: ('serialized_tx', p.BytesType, 0),
|
|
}
|
|
|
|
def __init__(
|
|
self,
|
|
signature_index: int = None,
|
|
signature: bytes = None,
|
|
serialized_tx: bytes = None
|
|
) -> None:
|
|
self.signature_index = signature_index
|
|
self.signature = signature
|
|
self.serialized_tx = serialized_tx
|