Skip to content

Commit

Permalink
Merge pull request #2492 from ethereum/extraLogs
Browse files Browse the repository at this point in the history
remove extra console logs
  • Loading branch information
yann300 authored Jun 6, 2022
2 parents 832ec88 + 9880ecc commit d12b690
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions libs/remix-simulator/src/methods/blocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export class Blocks {
return cb(new Error('block not found'))
}

console.log(block.transactions)
const transactions = block.transactions.map((t) => {
const hash = '0x' + t.hash().toString('hex')
const tx = this.vmContext.txByHash[hash]
Expand Down Expand Up @@ -95,7 +94,6 @@ export class Blocks {
eth_getBlockByHash (payload, cb) {
const block = this.vmContext.blocks[payload.params[0]]

console.log(block.transactions)
const transactions = block.transactions.map((t) => {
const hash = '0x' + t.hash().toString('hex')
const tx = this.vmContext.txByHash[hash]
Expand Down

0 comments on commit d12b690

Please sign in to comment.