diff --git a/build/icon.icns b/build/icon.icns index e730532f..66b2d6bd 100644 Binary files a/build/icon.icns and b/build/icon.icns differ diff --git a/src/helpers/anonymizer.js b/src/helpers/anonymizer.js index c0602449..693195a9 100644 --- a/src/helpers/anonymizer.js +++ b/src/helpers/anonymizer.js @@ -21,7 +21,7 @@ function filepathReplace(path: string) { if (!path) return path const replaced = Object.keys(basePaths).reduce((path, name) => { const p = basePaths[name] - return replaced + return path .replace(p, name) // normal replace of the path .replace(encodeURI(p.replace(/\\/g, '/')), name) // replace of the URI version of the path (that are in file:///) }, path) 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}'`