From 074dbabbbac307b0d9d07af728a4bfd67dff6a28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Oliveira?= Date: Fri, 14 May 2021 17:14:42 +0100 Subject: [PATCH] fix: remove erroneous if in migration --- .../1619968992683-fiat-balance-notification-to-percent.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/migrations/1619968992683-fiat-balance-notification-to-percent.js b/migrations/1619968992683-fiat-balance-notification-to-percent.js index 193089f3..7c73af88 100644 --- a/migrations/1619968992683-fiat-balance-notification-to-percent.js +++ b/migrations/1619968992683-fiat-balance-notification-to-percent.js @@ -37,9 +37,6 @@ exports.up = function (next) { .then(() => next()) }) .catch(err => { - if (err.message === 'lamassu-server is not configured') { - return next() - } console.log(err.message) return next(err) })