aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/migrations/005.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2017-01-29 14:26:47 +0800
committerGitHub <noreply@github.com>2017-01-29 14:26:47 +0800
commit47b48c0e02b2b9508813abfda0d89a1bbe677694 (patch)
treee4e07f9508905ff15425bc3664c60f5bb9410b3a /app/scripts/migrations/005.js
parent61528bdf088e304150698d95218806d7b4faa56e (diff)
parent13e20034698ae0477240e88eab9a3483e5daccd6 (diff)
downloadtangerine-wallet-browser-47b48c0e02b2b9508813abfda0d89a1bbe677694.tar.gz
tangerine-wallet-browser-47b48c0e02b2b9508813abfda0d89a1bbe677694.tar.zst
tangerine-wallet-browser-47b48c0e02b2b9508813abfda0d89a1bbe677694.zip
Merge pull request #1062 from MetaMask/kumavis-refactor3
Kumavis refactor3
Diffstat (limited to 'app/scripts/migrations/005.js')
-rw-r--r--app/scripts/migrations/005.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/app/scripts/migrations/005.js b/app/scripts/migrations/005.js
new file mode 100644
index 000000000..65f62a861
--- /dev/null
+++ b/app/scripts/migrations/005.js
@@ -0,0 +1,41 @@
+const version = 5
+
+/*
+
+This migration moves state from the flat state trie into KeyringController substate
+
+*/
+
+const extend = require('xtend')
+
+module.exports = {
+ version,
+
+ migrate: function (versionedData) {
+ versionedData.meta.version = version
+ try {
+ const state = versionedData.data
+ const newState = selectSubstateForKeyringController(state)
+ versionedData.data = newState
+ } catch (err) {
+ console.warn('MetaMask Migration #5' + err.stack)
+ }
+ return Promise.resolve(versionedData)
+ },
+}
+
+function selectSubstateForKeyringController (state) {
+ const config = state.config
+ const newState = extend(state, {
+ KeyringController: {
+ vault: state.vault,
+ selectedAccount: config.selectedAccount,
+ walletNicknames: state.walletNicknames,
+ },
+ })
+ delete newState.vault
+ delete newState.walletNicknames
+ delete newState.config.selectedAccount
+
+ return newState
+}