diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b5445f1f..86a5a7776 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Current Master +- [#347](https://github.com/poanetwork/nifty-wallet/pull/347) - Rollback custom dPath for RSK/ETC + ## 5.0.0 Tue Mar 31 2020 - [#340](https://github.com/poanetwork/nifty-wallet/pull/340), [#342](https://github.com/poanetwork/nifty-wallet/pull/342) - (Feature) Update in-page provider (EIP-1193) diff --git a/old-ui/app/util.js b/old-ui/app/util.js index 0d6b068e2..d29e8a938 100644 --- a/old-ui/app/util.js +++ b/old-ui/app/util.js @@ -39,7 +39,7 @@ const { RSK, RSK_TESTNET, RSK_TICK, - customDPaths, + // customDPaths, } = require('../../app/scripts/controllers/network/enums') var valueTable = { @@ -557,7 +557,9 @@ function getNetworkID ({ network }) { } function getDPath (network) { - return customDPaths[network] || `m/44'/60'/0'/0` + // todo: return when the robust solution will be ready + return `m/44'/60'/0'/0` + // return customDPaths[network] || `m/44'/60'/0'/0` } function setDPath (keyring, network) {