diff options
author | Dan <danjm.com@gmail.com> | 2018-03-14 08:08:08 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-03-14 08:08:08 +0800 |
commit | 46ded45b8186c0b338f6cff811cd89c48ef1a5ab (patch) | |
tree | fd3d91e5c2ca42b41ccdb612f176efe0983928e9 /ui | |
parent | 8c7988978f05fa57bba892efb42ae0036ce25771 (diff) | |
download | dexon-wallet-46ded45b8186c0b338f6cff811cd89c48ef1a5ab.tar.gz dexon-wallet-46ded45b8186c0b338f6cff811cd89c48ef1a5ab.tar.zst dexon-wallet-46ded45b8186c0b338f6cff811cd89c48ef1a5ab.zip |
Use correct var name in new-ui showRetryButton
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/tx-list-item.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/tx-list-item.js b/ui/app/components/tx-list-item.js index 453f7e95..ebf5db19 100644 --- a/ui/app/components/tx-list-item.js +++ b/ui/app/components/tx-list-item.js @@ -190,7 +190,7 @@ TxListItem.prototype.showRetryButton = function () { const currentTxIsLatestWithNonce = lastSubmittedTxWithCurrentNonce && lastSubmittedTxWithCurrentNonce.id === transactionId - return currentTxIsLatestWithNonce && Date.now() - submittedTime > 30000 + return currentTxIsLatestWithNonce && Date.now() - transactionSubmittedTime > 30000 } TxListItem.prototype.resubmit = function () { |