feat: emit new transaction from RunTab

pull/5370/head
davidzagi93@gmail.com 3 years ago
parent 87c58b2262
commit 57165493a7
  1. 7
      apps/remix-ide/src/app/panels/terminal.js

@ -142,7 +142,12 @@ class Terminal extends Plugin {
eventsDecoder = {this.eventsDecoder}
logHtml = {this.logHtmlResponse}
/>,
this.element
this.element,
() => {
this.blockchain.events.on('newTransaction', (tx, receipt) => {
this.emit('newTransaction', tx, receipt)
})
}
)
}

Loading…
Cancel
Save