Skip to content

Commit

Permalink
log emitter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
frankiebee committed Apr 29, 2018
1 parent 7eb7356 commit 7066477
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions app/scripts/controllers/transactions/tx-state-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -399,13 +399,17 @@ class TransactionStateManager extends EventEmitter {
const txMeta = this.getTx(txId)
txMeta.status = status
setTimeout(() => {
this.updateTx(txMeta, `txStateManager: setting status to ${status}`)
this.emit(`${txMeta.id}:${status}`, txId)
this.emit(`tx:status-update`, txId, status)
if (['submitted', 'rejected', 'failed'].includes(status)) {
this.emit(`${txMeta.id}:finished`, txMeta)
try {
this.updateTx(txMeta, `txStateManager: setting status to ${status}`)
this.emit(`${txMeta.id}:${status}`, txId)
this.emit(`tx:status-update`, txId, status)
if (['submitted', 'rejected', 'failed'].includes(status)) {
this.emit(`${txMeta.id}:finished`, txMeta)
}
this.emit('update:badge')
} catch (error) {
log.error(error)
}
this.emit('update:badge')
})
}

Expand Down

0 comments on commit 7066477

Please sign in to comment.