aboutsummaryrefslogtreecommitdiffstats
path: root/ui/lib/tx-helper.js
blob: 49845b01a079126290a9fb2fcd19967677b04928 (plain) (blame)
1
2
3
4
5
6
7
8
const valuesFor = require('../app/util').valuesFor

module.exports = function(unconfTxs, unconfMsgs) {
  var txValues = valuesFor(unconfTxs)
  var msgValues = valuesFor(unconfMsgs)
  var allValues = txValues.concat(msgValues)
  return allValues.sort(tx => tx.time)
}