diff --git a/apps/remix-ide-e2e/src/commands/checkVariableDebug.ts b/apps/remix-ide-e2e/src/commands/checkVariableDebug.ts index 037c005b6e..572c4893f3 100644 --- a/apps/remix-ide-e2e/src/commands/checkVariableDebug.ts +++ b/apps/remix-ide-e2e/src/commands/checkVariableDebug.ts @@ -29,7 +29,6 @@ function checkDebug(browser: NightwatchBrowser, id: string, debugValue: Nightwat }, [id], (result) => { if (result.value) { try { - console.log('checkDebug', result.value) resultOfElement = JSON.parse(result.value) isEqual = deepequal(debugValue, resultOfElement) } catch (e) { diff --git a/apps/remix-ide-e2e/src/tests/remixd.test.ts b/apps/remix-ide-e2e/src/tests/remixd.test.ts index 89e880e73e..b27e81a380 100644 --- a/apps/remix-ide-e2e/src/tests/remixd.test.ts +++ b/apps/remix-ide-e2e/src/tests/remixd.test.ts @@ -315,7 +315,6 @@ async function spawnRemixd(path: string): Promise { const remixd = spawn('yarn run remixd', [`-s ${path}`], { cwd: process.cwd(), shell: true, detached: true }) return new Promise((resolve, reject) => { remixd.stdout.on('data', function (data) { - console.log('stdout: ' + data.toString()) if( data.toString().includes('is listening') || data.toString().includes('There is already a client running') @@ -325,7 +324,6 @@ async function spawnRemixd(path: string): Promise { } }) remixd.stderr.on('err', function (data) { - console.log('err: ' + data.toString()) reject(data.toString()) }) }) diff --git a/apps/remix-ide/src/blockchain/providers/worker-vm.ts b/apps/remix-ide/src/blockchain/providers/worker-vm.ts index ccdce64aae..56d479041d 100644 --- a/apps/remix-ide/src/blockchain/providers/worker-vm.ts +++ b/apps/remix-ide/src/blockchain/providers/worker-vm.ts @@ -24,7 +24,7 @@ self.onmessage = (e: MessageEvent) => { } else { self.postMessage({ cmd: 'sendAsyncResult', - error: 'Provider not instanciated', + error: 'Provider not instantiated', result: null, stamp: data.stamp }) diff --git a/libs/remix-lib/src/execution/txRunnerWeb3.ts b/libs/remix-lib/src/execution/txRunnerWeb3.ts index b8a82dd09f..465960a753 100644 --- a/libs/remix-lib/src/execution/txRunnerWeb3.ts +++ b/libs/remix-lib/src/execution/txRunnerWeb3.ts @@ -49,7 +49,6 @@ export class TxRunnerWeb3 { _sendTransaction (sendTx, tx, pass, callback) { let currentDateTime = new Date(); const start = currentDateTime.getTime() / 1000 - console.log('start', start) const cb = (err, resp) => { if (err) { return callback(err, resp) @@ -62,7 +61,6 @@ export class TxRunnerWeb3 { tx = await tryTillTxAvailable(resp, this.getWeb3()) currentDateTime = new Date(); const end = currentDateTime.getTime() / 1000 - console.log('end', end) console.log('stopwatch', end - start) resolve({ receipt, diff --git a/libs/remix-simulator/src/methods/accounts.ts b/libs/remix-simulator/src/methods/accounts.ts index 50ec1eb759..0a82056ca0 100644 --- a/libs/remix-simulator/src/methods/accounts.ts +++ b/libs/remix-simulator/src/methods/accounts.ts @@ -1,5 +1,5 @@ import { BN, privateToAddress, toChecksumAddress, isValidPrivate, Address } from 'ethereumjs-util' -const Web3EthAccounts = require('web3-eth-accounts'); +const Web3EthAccounts = require('web3-eth-accounts') import * as crypto from 'crypto' export class Web3Accounts {