From 6481316ac535a326404472a4bb4e5d6d0b0e6c5b Mon Sep 17 00:00:00 2001 From: matejcik Date: Mon, 26 Aug 2019 14:42:21 +0200 Subject: [PATCH] core/ethereum: fix typo in wanchain detection (in template also) --- core/src/apps/ethereum/networks.py.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/apps/ethereum/networks.py.mako b/core/src/apps/ethereum/networks.py.mako index 459ab186ef..93e16ca03f 100644 --- a/core/src/apps/ethereum/networks.py.mako +++ b/core/src/apps/ethereum/networks.py.mako @@ -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