fix: replace getAllCryptoCurrencies function
This commit is contained in:
parent
ce0c7efe52
commit
312347199a
1 changed files with 8 additions and 9 deletions
|
|
@ -1,5 +1,5 @@
|
|||
const { saveConfig, loadLatest } = require('../lib/new-settings-loader')
|
||||
const { getAllCryptoCurrencies } = require('../lib/new-config-manager.js')
|
||||
const { getCryptosFromWalletNamespace } = require('../lib/new-config-manager.js')
|
||||
const { utils: coinUtils } = require('lamassu-coins')
|
||||
const _ = require('lodash/fp')
|
||||
|
||||
|
|
@ -7,14 +7,13 @@ exports.up = function (next) {
|
|||
loadLatest()
|
||||
.then(settings => {
|
||||
const newSettings = {}
|
||||
const activeCryptos = getAllCryptoCurrencies(settings.config)
|
||||
if (_.head(activeCryptos)) {
|
||||
_.map(crypto => {
|
||||
const defaultUnit = _.head(_.keys(coinUtils.getCryptoCurrency(crypto).units))
|
||||
newSettings[`wallets_${crypto}_cryptoUnits`] = defaultUnit
|
||||
return newSettings
|
||||
}, activeCryptos)
|
||||
}
|
||||
const activeCryptos = getCryptosFromWalletNamespace(settings.config)
|
||||
if (!activeCryptos.length) return Promise.resolve()
|
||||
_.map(crypto => {
|
||||
const defaultUnit = _.head(_.keys(coinUtils.getCryptoCurrency(crypto).units))
|
||||
newSettings[`wallets_${crypto}_cryptoUnits`] = defaultUnit
|
||||
return newSettings
|
||||
}, activeCryptos)
|
||||
return saveConfig(newSettings)
|
||||
})
|
||||
.then(() => next())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue