migration for preferences controller tokens

This commit is contained in:
Esteban MIno 2018-07-27 14:56:03 -04:00
parent f79a249bcc
commit f5107fa12e
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,37 @@
// next version number
const version = 28
/*
normalizes txParams on unconfirmed txs
*/
const clone = require('clone')
module.exports = {
version,
migrate: async function (originalVersionedData) {
const versionedData = clone(originalVersionedData)
versionedData.meta.version = version
const state = versionedData.data
const newState = transformState(state)
versionedData.data = newState
return versionedData
},
}
function transformState (state) {
const newState = state
if (newState.PreferencesController) {
if (newState.PreferencesController.tokens) {
const tokens = newState.TransactionController.tokens
const selectedAddress = newState.PreferencesController.selectedAddress
newState.PreferencesController.tokens = []
newState.PreferencesController.addressTokens = {'mainnet': {selectedAddress: tokens}}
}
}
return newState
}

View File

@ -37,4 +37,5 @@ module.exports = [
require('./024'),
require('./025'),
require('./026'),
require('./028'),
]