fix: get the keys, not the values

This commit is contained in:
siiky 2023-09-13 14:34:12 +01:00
parent e09300b837
commit 0f73568c1f

View file

@ -19,7 +19,7 @@ const BITGO_MODULES = {
LTC: require('@bitgo/sdk-coin-ltc'),
ZEC: require('@bitgo/sdk-coin-zec'),
}
const SUPPORTED_COINS = _.values(BITGO_MODULES)
const SUPPORTED_COINS = _.keys(BITGO_MODULES)
const BCH_CODES = ['BCH', 'TBCH']
const getWallet = (account, cryptoCode) => {