aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui/lib/tx-helper.js
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-12-08 01:54:37 +0800
committerGitHub <noreply@github.com>2017-12-08 01:54:37 +0800
commit41d281a52714ad432b115d94a272156d51cd7bad (patch)
tree36c1a9ad91600f48496157b45c9fa3019206467d /old-ui/lib/tx-helper.js
parent7dba114feb428f7f2f78fee5611377b04bff5be6 (diff)
parente0d0e19c925224bddf56a4088fb9c402d995d79f (diff)
downloadtangerine-wallet-browser-41d281a52714ad432b115d94a272156d51cd7bad.tar.gz
tangerine-wallet-browser-41d281a52714ad432b115d94a272156d51cd7bad.tar.zst
tangerine-wallet-browser-41d281a52714ad432b115d94a272156d51cd7bad.zip
Merge branch 'NewUI-flat' into cb-372
Diffstat (limited to 'old-ui/lib/tx-helper.js')
-rw-r--r--old-ui/lib/tx-helper.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/old-ui/lib/tx-helper.js b/old-ui/lib/tx-helper.js
new file mode 100644
index 000000000..de3f00d2d
--- /dev/null
+++ b/old-ui/lib/tx-helper.js
@@ -0,0 +1,27 @@
+const valuesFor = require('../app/util').valuesFor
+
+module.exports = function (unapprovedTxs, unapprovedMsgs, personalMsgs, typedMessages, network) {
+ log.debug('tx-helper called with params:')
+ log.debug({ unapprovedTxs, unapprovedMsgs, personalMsgs, typedMessages, network })
+
+ const txValues = network ? valuesFor(unapprovedTxs).filter(txMeta => txMeta.metamaskNetworkId === network) : valuesFor(unapprovedTxs)
+ log.debug(`tx helper found ${txValues.length} unapproved txs`)
+
+ const msgValues = valuesFor(unapprovedMsgs)
+ log.debug(`tx helper found ${msgValues.length} unsigned messages`)
+ let allValues = txValues.concat(msgValues)
+
+ const personalValues = valuesFor(personalMsgs)
+ log.debug(`tx helper found ${personalValues.length} unsigned personal messages`)
+ allValues = allValues.concat(personalValues)
+
+ const typedValues = valuesFor(typedMessages)
+ log.debug(`tx helper found ${typedValues.length} unsigned typed messages`)
+ allValues = allValues.concat(typedValues)
+
+ allValues = allValues.sort((a, b) => {
+ return a.time > b.time
+ })
+
+ return allValues
+}