From f309b899fc2e3e50ab8230db590ee2212f934b29 Mon Sep 17 00:00:00 2001 From: liangping <18786721@qq.com> Date: Fri, 28 Oct 2022 12:21:37 +0800 Subject: [PATCH] remove console --- src/store/chains/index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/store/chains/index.js b/src/store/chains/index.js index 29b2fe4e..eafaee1e 100644 --- a/src/store/chains/index.js +++ b/src/store/chains/index.js @@ -88,9 +88,7 @@ export default { async getQuotes(context) { // fetch('https://price.ping.pub/quotes').then(data => data.json()).then(data => { // context.commit('setQuotes', data) - // console.log(data) // }) - console.log(coingecko) const keys = Object.keys(coingecko) if (keys.length > 0) { const currencies = 'usd,cny,eur,jpy,krw,sgd,hkd' @@ -101,7 +99,6 @@ export default { quotes[coingecko[k]] = data[k] }) context.commit('setQuotes', quotes) - console.log(quotes) }) } },