aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/migrations/019.js
blob: ce5da685917980f46b31901cec99139d402925e9 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87

const version = 19

/*

This migration sets transactions as failed
whos nonce is too high

*/

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, _, txList) => {
      if (txMeta.status !== 'submitted') return txMeta

      const confirmedTxs = txList.filter((tx) => tx.status === 'confirmed')
      .filter((tx) => tx.txParams.from === txMeta.txParams.from)
      .filter((tx) => tx.metamaskNetworkId.from === txMeta.metamaskNetworkId.from)
      const highestConfirmedNonce = getHighestNonce(confirmedTxs)

      const pendingTxs = txList.filter((tx) => tx.status === 'submitted')
      .filter((tx) => tx.txParams.from === txMeta.txParams.from)
      .filter((tx) => tx.metamaskNetworkId.from === txMeta.metamaskNetworkId.from)
      const highestContinuousNonce = getHighestContinuousFrom(pendingTxs, highestConfirmedNonce)

      const maxNonce = Math.max(highestContinuousNonce, highestConfirmedNonce)

      if (parseInt(txMeta.txParams.nonce, 16) > maxNonce + 1) {
        txMeta.status = 'failed'
        txMeta.err = {
          message: 'nonce too high',
          note: 'migration 019 custom error',
        }
      }
      return txMeta
    })
  }
  return newState
}

function getHighestContinuousFrom (txList, startPoint) {
  const nonces = txList.map((txMeta) => {
    const nonce = txMeta.txParams.nonce
    return parseInt(nonce, 16)
  })

  let highest = startPoint
  while (nonces.includes(highest)) {
    highest++
  }

  return highest
}

function getHighestNonce (txList) {
  const nonces = txList.map((txMeta) => {
  const nonce = txMeta.txParams.nonce
    return parseInt(nonce || '0x0', 16)
  })
  const highestNonce = Math.max.apply(null, nonces)
  return highestNonce
}