lamassu-server/packages/server/migrations/1661125970289-eth-zero-conf-value.js
2025-05-12 10:52:54 +01:00

21 lines
522 B
JavaScript

const _ = require('lodash/fp')
const { saveConfig, loadLatestConfig } = require('../lib/new-settings-loader')
exports.up = function (next) {
return loadLatestConfig()
.then(config => {
if (!_.isNil(config.wallets_ETH_zeroConfLimit) && config.wallets_ETH_zeroConfLimit !== 0) {
const newConfig = { wallets_ETH_zeroConfLimit: 0 }
return saveConfig(newConfig)
}
})
.then(next)
.catch(err => {
return next(err)
})
}
module.exports.down = function (next) {
next()
}