mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
write a migration for resubmit tx's to get put back into a submitted state
This commit is contained in:
parent
27cb02bc58
commit
de0cd6e663
40
app/scripts/migrations/017.js
Normal file
40
app/scripts/migrations/017.js
Normal file
@ -0,0 +1,40 @@
|
||||
const version = 17
|
||||
|
||||
/*
|
||||
|
||||
This migration sets transactions who were retried and marked as failed to submitted
|
||||
|
||||
*/
|
||||
|
||||
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.status === 'failed') return txMeta
|
||||
if (txMeta.retryCount > 0) {
|
||||
txMeta.status = 'submitted'
|
||||
delete txMeta.err
|
||||
}
|
||||
return txMeta
|
||||
})
|
||||
return newState
|
||||
}
|
@ -27,4 +27,5 @@ module.exports = [
|
||||
require('./014'),
|
||||
require('./015'),
|
||||
require('./016'),
|
||||
require('./017'),
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user