You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
|
|
/*
|
|
|
|
This migration adds submittedTime to the txMeta if it is not their
|
|
|
|
*/
|
|
|
|
import { cloneDeep } from 'lodash'
|
|
|
|
const version = 22
|
|
|
|
export default {
|
|
version,
|
|
|
|
migrate (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
|
|
|
|
newState.TransactionController.transactions = transactions.map((txMeta) => {
|
|
if (txMeta.status !== 'submitted' || txMeta.submittedTime) {
|
|
return txMeta
|
|
}
|
|
txMeta.submittedTime = (new Date()).getTime()
|
|
return txMeta
|
|
})
|
|
}
|
|
return newState
|
|
}
|
|
|