remove console.log

pull/2723/head
yann300 3 years ago
parent 14dec205cc
commit 2566b6c0e9
  1. 4
      apps/etherscan/src/app/app.tsx

@ -43,14 +43,11 @@ const App = () => {
contractsRef.current = contracts contractsRef.current = contracts
useEffect(() => { useEffect(() => {
console.log("Remix Etherscan loading...")
const client = new PluginClient() const client = new PluginClient()
createClient(client) createClient(client)
const loadClient = async () => { const loadClient = async () => {
await client.onload() await client.onload()
setClientInstance(client) setClientInstance(client)
console.log("Remix Etherscan Plugin has been loaded")
client.on("solidity", client.on("solidity",
"compilationFinished", "compilationFinished",
( (
@ -59,7 +56,6 @@ const App = () => {
languageVersion: string, languageVersion: string,
data: CompilationResult data: CompilationResult
) => { ) => {
console.log("New compilation received")
const newContractsNames = getNewContractNames(data) const newContractsNames = getNewContractNames(data)
const newContractsToSave: string[] = [ const newContractsToSave: string[] = [

Loading…
Cancel
Save