diff --git a/migrations/1620954224627-add-fee-priority.js b/migrations/1620954224627-add-fee-priority.js index ebd630b1..37cce0e9 100644 --- a/migrations/1620954224627-add-fee-priority.js +++ b/migrations/1620954224627-add-fee-priority.js @@ -7,9 +7,8 @@ exports.up = function (next) { return loadLatest() .then(config => { return saveConfig(newConfig) - .then(() => next()) + .then(next) .catch(err => { - console.log(err.message) return next(err) }) }) @@ -17,4 +16,4 @@ exports.up = function (next) { module.exports.down = function (next) { next() -} \ No newline at end of file +}