You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/src/trezor/messages/TxRequestSerializedType.py

23 lines
600 B

# Automatically generated by pb2py
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,
**kwargs,
):
self.signature_index = signature_index
self.signature = signature
self.serialized_tx = serialized_tx
p.MessageType.__init__(self, **kwargs)