mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix the dissplay for submitted transactions and the listner wating to hear when tx's were included in a block
This commit is contained in:
parent
86c0eaa5a4
commit
460cbb985f
@ -297,7 +297,7 @@ module.exports = class TransactionManager extends EventEmitter {
|
|||||||
// checks if a signed tx is in a block and
|
// checks if a signed tx is in a block and
|
||||||
// if included sets the tx status as 'confirmed'
|
// if included sets the tx status as 'confirmed'
|
||||||
checkForTxInBlock () {
|
checkForTxInBlock () {
|
||||||
var signedTxList = this.getFilteredTxList({status: 'signed'})
|
var signedTxList = this.getFilteredTxList({status: 'submitted'})
|
||||||
if (!signedTxList.length) return
|
if (!signedTxList.length) return
|
||||||
signedTxList.forEach((txMeta) => {
|
signedTxList.forEach((txMeta) => {
|
||||||
var txHash = txMeta.hash
|
var txHash = txMeta.hash
|
||||||
|
@ -41,7 +41,7 @@ TransactionIcon.prototype.render = function () {
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
case 'signed':
|
case 'submitted':
|
||||||
return h('i.fa.fa-ellipsis-h', {
|
return h('i.fa.fa-ellipsis-h', {
|
||||||
style: {
|
style: {
|
||||||
fontSize: '27px',
|
fontSize: '27px',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user