From 89e7ac8e2a4a4b39df21ec13c31636a03b232485 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Renaudeau?= Date: Mon, 9 Jul 2018 15:52:21 +0200 Subject: [PATCH] Fix ETC legacy derivation (MEW) --- src/helpers/derivations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/derivations.js b/src/helpers/derivations.js index b441bcfd..2b74942a 100644 --- a/src/helpers/derivations.js +++ b/src/helpers/derivations.js @@ -9,7 +9,7 @@ type Derivation = ({ const ethLegacyMEW: Derivation = ({ x }) => `44'/60'/0'/${x}` -const etcLegacyMEW: Derivation = ({ x }) => `44'/60'/160720'/${x}` +const etcLegacyMEW: Derivation = ({ x }) => `44'/60'/160720'/${x}'/0` const rippleLegacy: Derivation = ({ x }) => `44'/144'/0'/${x}'`