You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
819 B
36 lines
819 B
6 years ago
|
// next version number
|
||
|
const version = 27
|
||
|
|
||
|
/*
|
||
|
|
||
|
normalizes txParams on unconfirmed txs
|
||
|
|
||
|
*/
|
||
|
const clone = require('clone')
|
||
|
|
||
|
module.exports = {
|
||
|
version,
|
||
|
|
||
|
migrate: async function (originalVersionedData) {
|
||
|
const versionedData = clone(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.transactions
|
||
|
newState.TransactionController.transactions = transactions.filter((txMeta) => txMeta.status !== 'rejected')
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return newState
|
||
|
}
|