aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <flyswatter@users.noreply.github.com>2017-01-19 04:25:35 +0800
committerGitHub <noreply@github.com>2017-01-19 04:25:35 +0800
commit0e01abdf7154067ca50bf279340b868aefd8343f (patch)
treefa3c5f2811912a18ce9811c5c850bb4ec25ffbb1
parent99ce68b4f6c24fbea34a9f6d23ff6ae9d9761b7c (diff)
parent9ab7ce370bc12e10b3458c0755f0dd8488788bec (diff)
downloadtangerine-wallet-browser-0e01abdf7154067ca50bf279340b868aefd8343f.tar
tangerine-wallet-browser-0e01abdf7154067ca50bf279340b868aefd8343f.tar.gz
tangerine-wallet-browser-0e01abdf7154067ca50bf279340b868aefd8343f.tar.bz2
tangerine-wallet-browser-0e01abdf7154067ca50bf279340b868aefd8343f.tar.lz
tangerine-wallet-browser-0e01abdf7154067ca50bf279340b868aefd8343f.tar.xz
tangerine-wallet-browser-0e01abdf7154067ca50bf279340b868aefd8343f.tar.zst
tangerine-wallet-browser-0e01abdf7154067ca50bf279340b868aefd8343f.zip
Merge branch 'master' into Version-3.1.0
-rw-r--r--CHANGELOG.md1
-rw-r--r--app/scripts/transaction-manager.js2
-rw-r--r--ui/app/components/transaction-list-item-icon.js2
3 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f057585ba..51bea159c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@
## 3.0.1 2017-1-17
- Fixed bug that prevented eth.sign from working.
+- Fix the displaying of transactions that have been submitted to the network in Transaction History
## 3.0.0 2017-1-16
diff --git a/app/scripts/transaction-manager.js b/app/scripts/transaction-manager.js
index 9261bb54a..6d0121afd 100644
--- a/app/scripts/transaction-manager.js
+++ b/app/scripts/transaction-manager.js
@@ -296,7 +296,7 @@ module.exports = class TransactionManager extends EventEmitter {
// checks if a signed tx is in a block and
// if included sets the tx status as 'confirmed'
checkForTxInBlock () {
- var signedTxList = this.getFilteredTxList({status: 'signed'})
+ var signedTxList = this.getFilteredTxList({status: 'submitted'})
if (!signedTxList.length) return
signedTxList.forEach((txMeta) => {
var txHash = txMeta.hash
diff --git a/ui/app/components/transaction-list-item-icon.js b/ui/app/components/transaction-list-item-icon.js
index eca0d693a..353401099 100644
--- a/ui/app/components/transaction-list-item-icon.js
+++ b/ui/app/components/transaction-list-item-icon.js
@@ -41,7 +41,7 @@ TransactionIcon.prototype.render = function () {
},
})
- case 'signed':
+ case 'submitted':
return h('i.fa.fa-ellipsis-h', {
style: {
fontSize: '27px',