2018-06-25 20:45:00 +02:00
|
|
|
// next version number
|
|
|
|
/*
|
|
|
|
|
|
|
|
normalizes txParams on unconfirmed txs
|
|
|
|
|
|
|
|
*/
|
2020-01-29 18:14:33 +01:00
|
|
|
import { cloneDeep } from 'lodash'
|
2020-11-07 08:38:12 +01:00
|
|
|
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction'
|
2018-06-25 20:45:00 +02:00
|
|
|
|
2020-08-19 18:27:05 +02:00
|
|
|
const version = 27
|
|
|
|
|
2020-01-09 04:34:58 +01:00
|
|
|
export default {
|
2018-06-25 20:45:00 +02:00
|
|
|
version,
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
async migrate(originalVersionedData) {
|
2020-01-29 18:14:33 +01:00
|
|
|
const versionedData = cloneDeep(originalVersionedData)
|
2018-06-25 20:45:00 +02:00
|
|
|
versionedData.meta.version = version
|
|
|
|
const state = versionedData.data
|
|
|
|
const newState = transformState(state)
|
|
|
|
versionedData.data = newState
|
|
|
|
return versionedData
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
function transformState(state) {
|
2018-06-25 20:45:00 +02:00
|
|
|
const newState = state
|
|
|
|
|
|
|
|
if (newState.TransactionController) {
|
|
|
|
if (newState.TransactionController.transactions) {
|
2020-08-18 22:06:58 +02:00
|
|
|
const { transactions } = newState.TransactionController
|
2020-11-03 00:41:28 +01:00
|
|
|
newState.TransactionController.transactions = transactions.filter(
|
2020-11-07 08:38:12 +01:00
|
|
|
(txMeta) => txMeta.status !== TRANSACTION_STATUSES.REJECTED,
|
2020-11-03 00:41:28 +01:00
|
|
|
)
|
2018-06-25 20:45:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return newState
|
|
|
|
}
|