nifty-wallet/ui/lib/tx-helper.js

17 lines
751 B
JavaScript
Raw Normal View History

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