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/core/src/trezor/enums/_proto_enum_class.mako

18 lines
323 B

# Automatically generated by pb2py
# fmt: off
# isort:skip_file
% if values_altcoin:
from trezor import utils
% endif
% for value in values_always:
${value.name} = ${value.number}
% endfor
% if values_altcoin:
if not utils.BITCOIN_ONLY:
% for value in values_altcoin:
${value.name} = ${value.number}
% endfor
% endif