feat: emit new transaction from RunTab

pull/5370/head
davidzagi93@gmail.com 3 years ago
parent 00e9e6624b
commit 5dab7dbef2
  1. 7
      apps/remix-ide/src/app/panels/terminal.js

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

Loading…
Cancel
Save