diff options
author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-05-18 00:05:38 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-05-18 00:05:38 +0800 |
commit | 67310e151ea75c7aa4fc00bfd63bf41cd4f2db51 (patch) | |
tree | 244a582ed826747cf48d8aad9a4a3f3a18991b66 /app/scripts/migrations | |
parent | e546f4b9041c03deb74ed115b8bcfe3869670b6e (diff) | |
download | tangerine-wallet-browser-67310e151ea75c7aa4fc00bfd63bf41cd4f2db51.tar.gz tangerine-wallet-browser-67310e151ea75c7aa4fc00bfd63bf41cd4f2db51.tar.zst tangerine-wallet-browser-67310e151ea75c7aa4fc00bfd63bf41cd4f2db51.zip |
Fix migration 026 to produce the correct shape for state.identities
Diffstat (limited to 'app/scripts/migrations')
-rw-r--r-- | app/scripts/migrations/026.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app/scripts/migrations/026.js b/app/scripts/migrations/026.js index ef0ed0542..1b8a91a45 100644 --- a/app/scripts/migrations/026.js +++ b/app/scripts/migrations/026.js @@ -34,7 +34,14 @@ function transformState (state) { return state } - state.PreferencesController.identities = state.KeyringController.walletNicknames + state.PreferencesController.identities = Object.keys(state.KeyringController.walletNicknames) + .reduce((identities, address) => { + identities[address] = { + name: state.KeyringController.walletNicknames[address], + address, + } + return identities + }, {}) delete state.KeyringController.walletNicknames return state } |