trezor-core/src/trezor/messages/TxSize.py

18 lines
342 B
Python

# Automatically generated by pb2py
import protobuf as p
class TxSize(p.MessageType):
FIELDS = {
1: ('tx_size', p.UVarintType, 0),
}
MESSAGE_WIRE_TYPE = 44
def __init__(
self,
tx_size: int = None,
**kwargs,
):
self.tx_size = tx_size
p.MessageType.__init__(self, **kwargs)