mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
88f54e29fb
See [`no-empty`](https://eslint.org/docs/rules/no-empty) for more information. This change enables `no-empty` and fixes the issues raised by the rule.
23 lines
578 B
JavaScript
23 lines
578 B
JavaScript
const version = 3
|
|
const oldTestRpc = 'https://rawtestrpc.metamask.io/'
|
|
const newTestRpc = 'https://testrpc.metamask.io/'
|
|
|
|
import { cloneDeep } from 'lodash'
|
|
|
|
export default {
|
|
version,
|
|
|
|
migrate: function (originalVersionedData) {
|
|
const versionedData = cloneDeep(originalVersionedData)
|
|
versionedData.meta.version = version
|
|
try {
|
|
if (versionedData.data.config.provider.rpcTarget === oldTestRpc) {
|
|
versionedData.data.config.provider.rpcTarget = newTestRpc
|
|
}
|
|
} catch (_) {
|
|
// empty
|
|
}
|
|
return Promise.resolve(versionedData)
|
|
},
|
|
}
|