mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
398a45bfdd
This was done to reduce the number of direct dependencies we have. It should be functionally equivalent. The bundle size should not change, as we use `clone` as a transitive dependency in a number of places.
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
const version = 16
|
|
|
|
/*
|
|
|
|
This migration sets transactions with the 'Gave up submitting tx.' err message
|
|
to a 'failed' stated
|
|
|
|
*/
|
|
|
|
import { cloneDeep } from 'lodash'
|
|
|
|
export default {
|
|
version,
|
|
|
|
migrate: function (originalVersionedData) {
|
|
const versionedData = cloneDeep(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
|
|
const { TransactionController } = newState
|
|
if (TransactionController && TransactionController.transactions) {
|
|
const transactions = newState.TransactionController.transactions
|
|
|
|
newState.TransactionController.transactions = transactions.map((txMeta) => {
|
|
if (!txMeta.err) {
|
|
return txMeta
|
|
}
|
|
if (txMeta.err === 'transaction with the same hash was already imported.') {
|
|
txMeta.status = 'submitted'
|
|
delete txMeta.err
|
|
}
|
|
return txMeta
|
|
})
|
|
}
|
|
return newState
|
|
}
|