Feat: save highVolumeTxs on DB and plugins code refactor

Fix: remove unused module and add space before '('

Chore: add jest tests for transactionNotify
This commit is contained in:
Cesar 2020-12-04 19:58:17 +00:00 committed by Josh Harvey
parent 75bfb4b991
commit 2ced230020
8 changed files with 646 additions and 414 deletions

View file

@ -1,5 +1,8 @@
const _ = require('lodash/fp')
const prettyMs = require('pretty-ms')
const email = require('../email')
const {
PING,
STALE,
@ -97,4 +100,7 @@ function emailAlert(alert) {
}
}
module.exports = { alertSubject, printEmailAlerts }
const sendMessage = email.sendMessage
module.exports = { alertSubject, printEmailAlerts, sendMessage }