aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/migrations/018.js
blob: d27fe3f463e356f4e22eb81b423be9238964bb03 (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
43
44
45
46
47
48
49
50
51
52
const version = 18

/*

This migration updates "transaction state history" to diffs style

*/

const clone = require('clone')
const txStateHistoryHelper = require('../lib/tx-state-history-helper')


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) => {
    // no history: initialize
    if (!txMeta.history || txMeta.history.length === 0) {
      const snapshot = txStateHistoryHelper.snapshotFromTxMeta(txMeta)
      txMeta.history = [snapshot]
      return txMeta
    }
    // has history: migrate
    const newHistory = (
      txStateHistoryHelper.migrateFromSnapshotsToDiffs(txMeta.history)
      // remove empty diffs
      .filter((entry) => {
        return !Array.isArray(entry) || entry.length > 0
      })
    )
    txMeta.history = newHistory
    return txMeta
  })
  return newState
}