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/TezosOperationCommon.py

35 lines
946 B

# Automatically generated by pb2py
# fmt: off
import protobuf as p
from .TezosContractID import TezosContractID
class TezosOperationCommon(p.MessageType):
FIELDS = {
1: ('branch', p.BytesType, 0),
2: ('tag', p.UVarintType, 0),
3: ('source', TezosContractID, 0),
4: ('fee', p.UVarintType, 0),
5: ('counter', p.UVarintType, 0),
6: ('gas_limit', p.UVarintType, 0),
7: ('storage_limit', p.UVarintType, 0),
}
def __init__(
self,
branch: bytes = None,
tag: int = None,
source: TezosContractID = None,
fee: int = None,
counter: int = None,
gas_limit: int = None,
storage_limit: int = None,
) -> None:
self.branch = branch
self.tag = tag
self.source = source
self.fee = fee
self.counter = counter
self.gas_limit = gas_limit
self.storage_limit = storage_limit