fix: get the keys, not the values
This commit is contained in:
parent
e09300b837
commit
0f73568c1f
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ const BITGO_MODULES = {
|
||||||
LTC: require('@bitgo/sdk-coin-ltc'),
|
LTC: require('@bitgo/sdk-coin-ltc'),
|
||||||
ZEC: require('@bitgo/sdk-coin-zec'),
|
ZEC: require('@bitgo/sdk-coin-zec'),
|
||||||
}
|
}
|
||||||
const SUPPORTED_COINS = _.values(BITGO_MODULES)
|
const SUPPORTED_COINS = _.keys(BITGO_MODULES)
|
||||||
const BCH_CODES = ['BCH', 'TBCH']
|
const BCH_CODES = ['BCH', 'TBCH']
|
||||||
|
|
||||||
const getWallet = (account, cryptoCode) => {
|
const getWallet = (account, cryptoCode) => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue