mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Add a migration for the network controller
This commit is contained in:
parent
13a41f3129
commit
e08c1541e5
34
app/scripts/migrations/014.js
Normal file
34
app/scripts/migrations/014.js
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
const version = 14
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
This migration removes provider from config and moves it too NetworkController.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
const clone = require('clone')
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
version,
|
||||||
|
|
||||||
|
migrate: function (originalVersionedData) {
|
||||||
|
const versionedData = clone(originalVersionedData)
|
||||||
|
versionedData.meta.version = version
|
||||||
|
try {
|
||||||
|
const state = versionedData.data
|
||||||
|
const newState = transformState(state)
|
||||||
|
versionedData.data = newState
|
||||||
|
} catch (err) {
|
||||||
|
console.warn(`MetaMask Migration #${version}` + err.stack)
|
||||||
|
}
|
||||||
|
return Promise.resolve(versionedData)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
function transformState (state) {
|
||||||
|
const newState = state
|
||||||
|
newState.NetworkController = {}
|
||||||
|
newState.NetworkController.provider = newState.config.provider
|
||||||
|
delete newState.config.provider
|
||||||
|
return newState
|
||||||
|
}
|
@ -24,4 +24,5 @@ module.exports = [
|
|||||||
require('./011'),
|
require('./011'),
|
||||||
require('./012'),
|
require('./012'),
|
||||||
require('./013'),
|
require('./013'),
|
||||||
|
require('./014'),
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user