1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/tools/check-bitcoin-only

13 lines
370 B
Bash
Executable File

#!/bin/sh
RETURN=0
# dump all coins except the first 3 (Bitcoin, Testnet, Regtest)
./common/tools/cointool.py dump -l -p -t | grep '"name"' | cut -d '"' -f 4 | tail -n +4 | while read altcoin; do
# echo :"$altcoin":
if strings $1 | grep "$altcoin" | grep -v TEXT_MARGIN_LEFT | grep -v _MIN_MNEMONIC_LENGTH_WORD ; then
RETURN=1
fi
done
exit $RETURN