mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
b6ccd22d6c
Co-authored-by: Mark Stacey <markjstacey@gmail.com>
44 lines
976 B
JavaScript
44 lines
976 B
JavaScript
|
|
/*
|
|
|
|
This migration ensures that the from address in txParams is to lower case for
|
|
all unapproved transactions
|
|
|
|
*/
|
|
|
|
import { cloneDeep } from 'lodash'
|
|
|
|
const version = 24
|
|
|
|
export default {
|
|
version,
|
|
|
|
async migrate (originalVersionedData) {
|
|
const versionedData = cloneDeep(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.TransactionController) {
|
|
return newState
|
|
}
|
|
const { transactions } = newState.TransactionController
|
|
newState.TransactionController.transactions = transactions.map((txMeta, _) => {
|
|
if (
|
|
txMeta.status === 'unapproved' &&
|
|
txMeta.txParams &&
|
|
txMeta.txParams.from
|
|
) {
|
|
txMeta.txParams.from = txMeta.txParams.from.toLowerCase()
|
|
}
|
|
return txMeta
|
|
})
|
|
return newState
|
|
}
|