1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/lib/tx-helper.js

18 lines
841 B
JavaScript
Raw Normal View History

const valuesFor = require('../app/util').valuesFor
2017-02-23 01:23:13 +01:00
module.exports = function (unapprovedTxs, unapprovedMsgs, personalMsgs, network) {
log.debug('tx-helper called with params:')
2017-02-23 01:23:13 +01:00
log.debug({ unapprovedTxs, unapprovedMsgs, personalMsgs, network })
const txValues = network ? valuesFor(unapprovedTxs).filter(txMeta => txMeta.metamaskNetworkId === network) : valuesFor(unapprovedTxs)
log.debug(`tx helper found ${txValues.length} unapproved txs`)
2017-02-23 01:23:13 +01:00
const msgValues = valuesFor(unapprovedMsgs)
log.debug(`tx helper found ${msgValues.length} unsigned messages`)
2017-02-23 01:23:13 +01:00
let allValues = txValues.concat(msgValues)
const personalValues = valuesFor(personalMsgs)
log.debug(`tx helper found ${personalValues.length} unsigned personal messages`)
2017-02-23 01:23:13 +01:00
allValues = allValues.concat(personalValues)
2017-07-25 02:04:13 +02:00
return allValues.sort(txMeta => txMeta.time)
}