lamassu-server/packages/server/migrations/1732790112741-add-cashout-fee-to-user_config.js
2025-12-31 19:04:13 +01:00

6 lines
170 B
JavaScript

const { saveConfig } = require('./settings')
exports.up = next =>
saveConfig({ commissions_cashOutFixedFee: 0 }).then(next).catch(next)
exports.down = next => next()