1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-24 23:38:09 +00:00
trezor-firmware/python/src/trezorlib/messages/PrevOutput.py
matejcik 0eed360037 chore: make tx type names shorter
as suggested by @andrewkozlik:
TxAckInputType -> TxInput
TxAckOutputType -> TxOutput
TxAckPrevTxType -> PrevTx
TxAckPrevInputType -> PrevInput
TxAckPrevOutputType -> PrevOutput
2020-09-23 16:00:10 +02:00

33 lines
831 B
Python

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
if __debug__:
try:
from typing import Dict, List # noqa: F401
from typing_extensions import Literal # noqa: F401
except ImportError:
pass
class PrevOutput(p.MessageType):
def __init__(
self,
*,
amount: int,
script_pubkey: bytes,
decred_script_version: int = None,
) -> None:
self.amount = amount
self.script_pubkey = script_pubkey
self.decred_script_version = decred_script_version
@classmethod
def get_fields(cls) -> Dict:
return {
1: ('amount', p.UVarintType, p.FLAG_REQUIRED),
2: ('script_pubkey', p.BytesType, p.FLAG_REQUIRED),
3: ('decred_script_version', p.UVarintType, None),
}