1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 22:38:08 +00:00

ethereum: nitpick in GetPublicKey

This commit is contained in:
Pavol Rusnak 2019-01-14 17:15:55 +01:00
parent cf0b5d669b
commit cbba5f28ae
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -25,7 +25,9 @@ void fsm_msgEthereumGetPublicKey(const EthereumGetPublicKey *msg)
CHECK_PIN
const CoinInfo *coin = fsm_getCoin(true, "Bitcoin"); // we use Bitcoin-like format for ETH
// we use Bitcoin-like format for ETH
const CoinInfo *coin = fsm_getCoin(true, "Bitcoin");
if (!coin) return;
const char *curve = coin->curve_name;
uint32_t fingerprint;