aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/migrations/022.js
blob: 1fbe241e6ed4f2d8d915407656b88ad28964a942 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

const version = 22

/*

This migration adds submittedTime to the txMeta if it is not their

*/

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 { TransactionController } = newState
  if (TransactionController && TransactionController.transactions) {
    const transactions = newState.TransactionController.transactions

    newState.TransactionController.transactions = transactions.map((txMeta) => {
      if (txMeta.status !== 'submitted' || txMeta.submittedTime) return txMeta
      txMeta.submittedTime = (new Date()).getTime()
      return txMeta
    })
  }
  return newState
}