mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-15 19:08:07 +00:00
core/ethereum: fix typo in wanchain detection (in template also)
This commit is contained in:
parent
b0b286aafe
commit
6481316ac5
@ -30,7 +30,7 @@ def by_chain_id(chain_id: int) -> Optional["NetworkInfo"]:
|
||||
def by_slip44(slip44: int) -> Optional["NetworkInfo"]:
|
||||
if slip44 == SLIP44_WANCHAIN:
|
||||
# Coerce to Ethereum
|
||||
slip44 == SLIP44_ETHEREUM
|
||||
slip44 = SLIP44_ETHEREUM
|
||||
for n in NETWORKS:
|
||||
if n.slip44 == slip44:
|
||||
return n
|
||||
|
Loading…
Reference in New Issue
Block a user