1
0
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

Reason it worked before: this function would fail to find a network
for wanchain, but the `network` value is only used to determine if
RSKIP60 should be used. That is almost never the case, so missing
network info did not cause an issue.
This commit is contained in:
matejcik 2019-08-26 14:28:05 +02:00
parent 2022c39ef9
commit b0b286aafe

View File

@ -30,7 +30,7 @@ def by_chain_id(chain_id: int) -> Optional["NetworkInfo"]:
def by_slip44(slip44: int) -> Optional["NetworkInfo"]: def by_slip44(slip44: int) -> Optional["NetworkInfo"]:
if slip44 == SLIP44_WANCHAIN: if slip44 == SLIP44_WANCHAIN:
# Coerce to Ethereum # Coerce to Ethereum
slip44 == SLIP44_ETHEREUM slip44 = SLIP44_ETHEREUM
for n in NETWORKS: for n in NETWORKS:
if n.slip44 == slip44: if n.slip44 == slip44:
return n return n