mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-26 17:38:39 +00:00
differentiate between ETH and ETC using chain_id
This commit is contained in:
parent
323e7443a4
commit
5c54edf54e
@ -242,7 +242,11 @@ static void ethereumFormatAmount(bignum256 *val, char buffer[25])
|
||||
// remove trailing dot.
|
||||
if (value_ptr[-1] == '.')
|
||||
value_ptr--;
|
||||
if (chain_id == 61 || chain_id == 62) {
|
||||
strcpy(value_ptr, " ETC");
|
||||
} else {
|
||||
strcpy(value_ptr, " ETH");
|
||||
}
|
||||
// value is at most 16 + 4 + 1 characters long
|
||||
} else {
|
||||
// value is bigger than 1e9 ETH => won't fit on display (probably won't happen unless you are Vitalik)
|
||||
|
Loading…
Reference in New Issue
Block a user