const { saveConfig, loadLatest } = require('../lib/new-settings-loader') exports.up = function (next) { const newConfig = { wallets_BTC_feeDiscount: '1' } return loadLatest() .then(config => { return saveConfig(newConfig) }) .then(next) .catch(err => { return next(err) }) } module.exports.down = function (next) { next() }