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/011.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/011.js')
-rw-r--r-- | app/scripts/migrations/011.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/scripts/migrations/011.js b/app/scripts/migrations/011.js index 227fd87f7..bf283ef98 100644 --- a/app/scripts/migrations/011.js +++ b/app/scripts/migrations/011.js @@ -6,10 +6,13 @@ This migration breaks out the CurrencyController substate */ +const clone = require('clone') + module.exports = { version, - migrate: function (versionedData) { + migrate: function (originalVersionedData) { + let versionedData = clone(originalVersionedData) versionedData.meta.version = version try { const state = versionedData.data |