From f78057e824d851077aceb2d8506ffdc8a5879a90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Renaudeau?= Date: Tue, 24 Jul 2018 13:31:47 +0200 Subject: [PATCH] Fixes derivation of ETC legacy paths --- 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 f80e0e22..21ea8b30 100644 --- a/src/helpers/derivations.js +++ b/src/helpers/derivations.js @@ -14,7 +14,7 @@ type Derivation = { const ethLegacyMEW: Derivation = ({ x }) => `44'/60'/0'/${x}` ethLegacyMEW.mandatoryEmptyAccountSkip = 10 -const etcLegacyMEW: Derivation = ({ x }) => `44'/60'/160720'/${x}'/0` +const etcLegacyMEW: Derivation = ({ x }) => `44'/60'/160720'/0'/${x}` etcLegacyMEW.mandatoryEmptyAccountSkip = 10 const rippleLegacy: Derivation = ({ x }) => `44'/144'/0'/${x}'`