aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui
diff options
context:
space:
mode:
authorEsteban MIno <efmino@uc.cl>2018-07-26 08:58:20 +0800
committerEsteban MIno <efmino@uc.cl>2018-07-26 08:58:20 +0800
commitb580f60d749b862fe08adfc7457c726905ebc623 (patch)
tree67ed42290a0f1a9840c18d996c81f56e26042974 /old-ui
parentc8d45cb4a8a671bad20cd5a5aa1bcbbd88463bdb (diff)
downloadtangerine-wallet-browser-b580f60d749b862fe08adfc7457c726905ebc623.tar
tangerine-wallet-browser-b580f60d749b862fe08adfc7457c726905ebc623.tar.gz
tangerine-wallet-browser-b580f60d749b862fe08adfc7457c726905ebc623.tar.bz2
tangerine-wallet-browser-b580f60d749b862fe08adfc7457c726905ebc623.tar.lz
tangerine-wallet-browser-b580f60d749b862fe08adfc7457c726905ebc623.tar.xz
tangerine-wallet-browser-b580f60d749b862fe08adfc7457c726905ebc623.tar.zst
tangerine-wallet-browser-b580f60d749b862fe08adfc7457c726905ebc623.zip
earliest tx by submittedTime
Diffstat (limited to 'old-ui')
-rw-r--r--old-ui/app/components/transaction-list-item.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/old-ui/app/components/transaction-list-item.js b/old-ui/app/components/transaction-list-item.js
index e12f9cd6a..f479ce666 100644
--- a/old-ui/app/components/transaction-list-item.js
+++ b/old-ui/app/components/transaction-list-item.js
@@ -36,6 +36,7 @@ TransactionListItem.prototype.showRetryButton = function () {
return false
}
+ let currentTxIsLatest = false
const currentNonce = txParams.nonce
const currentNonceTxs = transactions.filter(tx => tx.txParams.nonce === currentNonce)
const currentNonceSubmittedTxs = currentNonceTxs.filter(tx => tx.status === 'submitted')
@@ -43,12 +44,14 @@ TransactionListItem.prototype.showRetryButton = function () {
const lastSubmittedTxWithCurrentNonce = currentNonceSubmittedTxs[0]
const currentTxIsLatestWithNonce = lastSubmittedTxWithCurrentNonce &&
lastSubmittedTxWithCurrentNonce.id === transaction.id
- const lastTx = currentSubmittedTxs.reduce((tx1, tx2) => {
- if (tx1.id < tx2.id) return tx1
- return tx2
- })
+ if (currentSubmittedTxs.length > 0) {
+ const lastTx = currentSubmittedTxs.reduce((tx1, tx2) => {
+ if (tx1.submittedTime < tx2.submittedTime) return tx1
+ return tx2
+ })
+ currentTxIsLatest = lastTx.id === transaction.id
+ }
- const currentTxIsLatest = lastTx.id === transaction.id
return currentTxIsLatestWithNonce && Date.now() - submittedTime > 30000 && currentTxIsLatest
}