Skip to content

Commit

Permalink
More TypeScript build error fix ;)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanregisser committed Nov 4, 2019
1 parent 86108d2 commit 0176b90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/transaction-metrics-exporter/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import express from 'express'
import * as PromClient from 'prom-client'
import { metricExporterWithRestart } from './blockchain'

process.on('unhandledRejection', (error) => {
console.log('unhandledRejection', error.message)
process.on('unhandledRejection', (reason) => {
console.log('unhandledRejection', reason)
process.exit(1)
})

Expand Down

0 comments on commit 0176b90

Please sign in to comment.