update price chart

This commit is contained in:
liangping 2022-01-11 13:17:07 +08:00
parent 62af7ccc27
commit 76aabaf3d6

View File

@ -366,8 +366,8 @@ export default class ChainFetch {
async getMarketChart(days = 14, coin = null) { async getMarketChart(days = 14, coin = null) {
const conf = this.getSelectedConfig() const conf = this.getSelectedConfig()
const currency = getUserCurrency() const currency = getUserCurrency()
if (conf.coingecko && conf.coingecko.length > 0) { if (conf.assets[0] && conf.assets[0].coingecko_id) {
return ChainFetch.fetch(' https://api.coingecko.com', `/api/v3/coins/${coin || conf.coingecko}/market_chart?vs_currency=${currency}&days=${days}`) return ChainFetch.fetch(' https://api.coingecko.com', `/api/v3/coins/${coin || conf.assets[0].coingecko_id}/market_chart?vs_currency=${currency}&days=${days}`)
} }
return null return null
} }