1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-12 16:30:56 +00:00
trezor-firmware/python/src/trezorlib/messages/PrevOutput.py

33 lines
831 B
Python
Raw Normal View History

2020-09-14 11:56:11 +00:00
# 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):
2020-09-14 11:56:11 +00:00
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),
}