diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2017-02-16 03:14:53 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2017-02-16 03:14:53 +0800 |
commit | 75f7c1244a43e48d45767e559a3b1b48f068030b (patch) | |
tree | 1f2c13bd9b3f65846e323d1894e22d66e5f40af8 /app/scripts/migrations/003.js | |
parent | cd75d861874f300fdca7b20274d170d0023d6caf (diff) | |
download | tangerine-wallet-browser-75f7c1244a43e48d45767e559a3b1b48f068030b.tar tangerine-wallet-browser-75f7c1244a43e48d45767e559a3b1b48f068030b.tar.gz tangerine-wallet-browser-75f7c1244a43e48d45767e559a3b1b48f068030b.tar.bz2 tangerine-wallet-browser-75f7c1244a43e48d45767e559a3b1b48f068030b.tar.lz tangerine-wallet-browser-75f7c1244a43e48d45767e559a3b1b48f068030b.tar.xz tangerine-wallet-browser-75f7c1244a43e48d45767e559a3b1b48f068030b.tar.zst tangerine-wallet-browser-75f7c1244a43e48d45767e559a3b1b48f068030b.zip |
Made migrations non-destructive; fixed currency migration.
Diffstat (limited to 'app/scripts/migrations/003.js')
-rw-r--r-- | app/scripts/migrations/003.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/scripts/migrations/003.js b/app/scripts/migrations/003.js index eceaeaa4b..1893576ad 100644 --- a/app/scripts/migrations/003.js +++ b/app/scripts/migrations/003.js @@ -2,10 +2,13 @@ const version = 3 const oldTestRpc = 'https://rawtestrpc.metamask.io/' const newTestRpc = 'https://testrpc.metamask.io/' +const clone = require('clone') + module.exports = { version, - migrate: function (versionedData) { + migrate: function (originalVersionedData) { + let versionedData = clone(originalVersionedData) versionedData.meta.version = version try { if (versionedData.data.config.provider.rpcTarget === oldTestRpc) { |