fix: fudge factor being ignored

This commit is contained in:
André Sá 2021-10-27 18:03:29 +01:00
parent 2e1564c23c
commit 63a5e83390
2 changed files with 3 additions and 1 deletions

View file

@ -54,6 +54,7 @@ const getGlobalLocale = it => getLocale(null, it)
const getWalletSettings = (key, it) => _.compose(fromNamespace(key), fromNamespace(namespaces.WALLETS))(it)
const getCashOut = (key, it) => _.compose(fromNamespace(key), fromNamespace(namespaces.CASH_OUT))(it)
const getGlobalCashOut = fromNamespace(namespaces.CASH_OUT)
const getOperatorInfo = fromNamespace(namespaces.OPERATOR_INFO)
const getCoinAtmRadar = fromNamespace(namespaces.COIN_ATM_RADAR)
const getTermsConditions = fromNamespace(namespaces.TERMS_CONDITIONS)
@ -118,5 +119,6 @@ module.exports = {
getTermsConditions,
getAllCryptoCurrencies,
getTriggers,
getGlobalCashOut,
getCashOut
}