log instead of error

compilertrigger^2
yann300 2 years ago committed by Aniket
parent 27ef2bfa1e
commit eb7613a2f4
  1. 2
      libs/remix-lib/src/execution/txListener.ts

@ -172,7 +172,7 @@ export class TxListener {
} }
const current = this.executionContext.lastBlock?.number const current = this.executionContext.lastBlock?.number
if (!current) { if (!current) {
console.error(new Error('no last block found')) console.log(new Error('no last block found'))
return return
} }
if (currentLoopId === this._loopId && lastSeenBlock < current) { if (currentLoopId === this._loopId && lastSeenBlock < current) {

Loading…
Cancel
Save