1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Create a migration for setting tx's with the message 'Gave up submitting tx.' as failed

This commit is contained in:
frankiebee 2017-06-27 14:59:37 -07:00
parent 48f7cff8c0
commit 4e0ec74bb7
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,38 @@
const version = 15
/*
This migration sets transactions with the 'Gave up submitting tx.' err message
to a 'failed' stated
*/
const clone = require('clone')
module.exports = {
version,
migrate: function (originalVersionedData) {
const versionedData = clone(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 transactions = newState.TransactionController.transactions
newState.TransactionController.transactions = transactions.map((txMeta) => {
if (!txMeta.err) return txMeta
else if (txMeta.err.message === 'Gave up submitting tx.') txMeta.status = 'failed'
return txMeta
})
return newState
}

View File

@ -25,4 +25,5 @@ module.exports = [
require('./012'),
require('./013'),
require('./014'),
require('./015'),
]