log instead of error

pull/5370/head
yann300 2 years ago committed by Aniket
parent 81b04fb667
commit 8701bea2a8
  1. 2
      libs/remix-lib/src/execution/txListener.ts

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

Loading…
Cancel
Save