fix: get the keys, not the values

This commit is contained in:
siiky 2023-09-13 14:34:12 +01:00 committed by Rafael Taranto
parent c2a7714581
commit 30e9144714

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) => {