1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 04:18:10 +00:00

fix: update check-bitcoin-only exceptions list

This commit is contained in:
matejcik 2024-03-07 13:47:34 +01:00 committed by matejcik
parent b6e8567a49
commit 1fede16548

View File

@ -4,11 +4,9 @@ RETURN=0
EXCEPTIONS=() EXCEPTIONS=()
EXCEPTIONS+=( "decred" ) # "decred" figures in field names used by the bitcoin app EXCEPTIONS+=( "decred" ) # "decred" figures in field names used by the bitcoin app
EXCEPTIONS+=( "omni" ) # OMNI is part of the bitcoin app EXCEPTIONS+=( "omni" ) # OMNI is part of the bitcoin app
# BIP39 or SLIP39 words that have "dash" in them EXCEPTIONS+=( "derive_cardano" ) # field name in Initialize message
EXCEPTIONS+=( "dash" ) # BIP39 or SLIP39 words that have "dash" and "ripple" in them
EXCEPTIONS+=( "confirm_ethereum_tx" "confirm_ethereum_staking_tx" ) # model-specific, so is in layout/__init__.py instead of ethereum/layout.py EXCEPTIONS+=( "dash" "ripple" )
EXCEPTIONS+=( "__" ) # ignoring the translations blob (section__key delimiter)
EXCEPTIONS+=( "{}" "{0}" ) # ignoring the translations blob (template identifier)
GREP_ARGS=() GREP_ARGS=()
for exception in "${EXCEPTIONS[@]}"; do for exception in "${EXCEPTIONS[@]}"; do