mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
a49a4a066c
* expand transaction constants coverage * touchups * dont import inside of e2e * Update app/scripts/controllers/transactions/tx-state-manager.js Co-authored-by: Mark Stacey <markjstacey@gmail.com> * Update test/unit/app/controllers/transactions/tx-controller-test.js Co-authored-by: Mark Stacey <markjstacey@gmail.com> Co-authored-by: Mark Stacey <markjstacey@gmail.com>
39 lines
917 B
JavaScript
39 lines
917 B
JavaScript
// next version number
|
|
/*
|
|
|
|
normalizes txParams on unconfirmed txs
|
|
|
|
*/
|
|
import { cloneDeep } from 'lodash'
|
|
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction'
|
|
|
|
const version = 27
|
|
|
|
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) {
|
|
if (newState.TransactionController.transactions) {
|
|
const { transactions } = newState.TransactionController
|
|
newState.TransactionController.transactions = transactions.filter(
|
|
(txMeta) => txMeta.status !== TRANSACTION_STATUSES.REJECTED,
|
|
)
|
|
}
|
|
}
|
|
|
|
return newState
|
|
}
|