mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +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>
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
/*
|
|
|
|
This migration sets transactions who were retried and marked as failed to submitted
|
|
|
|
*/
|
|
|
|
import { cloneDeep } from 'lodash'
|
|
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction'
|
|
|
|
const version = 17
|
|
|
|
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 === TRANSACTION_STATUSES.FAILED) {
|
|
return txMeta
|
|
}
|
|
if (txMeta.retryCount > 0 && txMeta.retryCount < 2) {
|
|
txMeta.status = TRANSACTION_STATUSES.SUBMITTED
|
|
delete txMeta.err
|
|
}
|
|
return txMeta
|
|
})
|
|
}
|
|
return newState
|
|
}
|