From 9c483fa72a36def092bd91248df2310560d3a6ab Mon Sep 17 00:00:00 2001
From: Mahdi Yari <m.yary16@gmail.com>
Date: Thu, 9 Jul 2020 10:27:46 +0430
Subject: [PATCH] remove console.log

---
 src/utils.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/utils.js b/src/utils.js
index eb81857..1b9925c 100644
--- a/src/utils.js
+++ b/src/utils.js
@@ -129,8 +129,7 @@ export function buildWitnessUpdateOp(
 
 export function autoDetectApiVersion() {
   return new Promise((resolve, reject) => {
-    jsonRpc(config.get('uri'), { method: 'condenser_api.get_version', params: [], id: 1 }).then(res => {
-      console.log(res)
+    jsonRpc(config.get('url'), { method: 'condenser_api.get_version', params: [], id: 1 }).then(res => {
       if (res.blockchain_version !== "0.23.0") {
         config.set("rebranded_api", true)
         resolve({ rebranded_api: true })
-- 
GitLab