From 2634b32d47b50d80d984e125b20743522a684094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=BDiga=20Kokelj?= Date: Tue, 12 Sep 2023 12:05:01 +0200 Subject: [PATCH] remove console.log --- tools/walletextension/api/staticOG/javascript.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/walletextension/api/staticOG/javascript.js b/tools/walletextension/api/staticOG/javascript.js index 429bbe3a92..5e2783f299 100644 --- a/tools/walletextension/api/staticOG/javascript.js +++ b/tools/walletextension/api/staticOG/javascript.js @@ -31,7 +31,6 @@ let obscuroGatewayAddress = window.location.protocol + "//" + window.location.ho async function addNetworkToMetaMask(ethereum, userID, chainIDDecimal) { // add network to MetaMask let chainIdHex = "0x" + chainIDDecimal.toString(16); // Convert to hexadecimal and prefix with '0x' - console.log("ChainIdHex: ", chainIdHex) try { await ethereum.request({ method: 'wallet_addEthereumChain', @@ -228,4 +227,4 @@ const initialize = () => { } -window.addEventListener(eventDomLoaded, initialize); \ No newline at end of file +window.addEventListener(eventDomLoaded, initialize);