Skip to content

Commit 0e01abd

Browse files
authored
Merge branch 'master' into Version-3.1.0
2 parents 99ce68b + 9ab7ce3 commit 0e01abd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
## 3.0.1 2017-1-17
1111

1212
- Fixed bug that prevented eth.sign from working.
13+
- Fix the displaying of transactions that have been submitted to the network in Transaction History
1314

1415
## 3.0.0 2017-1-16
1516

app/scripts/transaction-manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ module.exports = class TransactionManager extends EventEmitter {
296296
// checks if a signed tx is in a block and
297297
// if included sets the tx status as 'confirmed'
298298
checkForTxInBlock () {
299-
var signedTxList = this.getFilteredTxList({status: 'signed'})
299+
var signedTxList = this.getFilteredTxList({status: 'submitted'})
300300
if (!signedTxList.length) return
301301
signedTxList.forEach((txMeta) => {
302302
var txHash = txMeta.hash

ui/app/components/transaction-list-item-icon.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ TransactionIcon.prototype.render = function () {
4141
},
4242
})
4343

44-
case 'signed':
44+
case 'submitted':
4545
return h('i.fa.fa-ellipsis-h', {
4646
style: {
4747
fontSize: '27px',

0 commit comments

Comments
 (0)