background - txManager - filter txs by network

feature/default_network_editable
kumavis 8 years ago
parent c3d491a37c
commit f49fb149cc
  1. 5
      app/scripts/background.js
  2. 5
      app/scripts/transaction-manager.js

@ -22,7 +22,7 @@ const controller = new MetamaskController({
setData,
loadData,
})
const txManager = controller.txManager
function triggerUi () {
if (!popupIsOpen) notification.show()
}
@ -93,7 +93,8 @@ function setupControllerConnection (stream) {
// plugin badge text
//
txManager.on('updateBadge', updateBadge)
controller.txManager.on('updateBadge', updateBadge)
updateBadge()
function updateBadge () {
var label = ''

@ -35,7 +35,8 @@ module.exports = class TransactionManager extends EventEmitter {
// Returns the tx list
getTxList () {
return this.txList
let network = this.getNetwork()
return this.txList.filter(txMeta => txMeta.metamaskNetworkId === network)
}
// Adds a tx to the txlist
@ -345,8 +346,8 @@ module.exports = class TransactionManager extends EventEmitter {
if (status === 'submitted' || status === 'rejected') {
this.emit(`${txMeta.id}:finished`, status)
}
this.emit('updateBadge')
this.updateTx(txMeta)
this.emit('updateBadge')
}
// Saves the new/updated txList.

Loading…
Cancel
Save