removed third params in ReactDom.render for terminal

pull/1342/head
davidzagi93@gmail.com 3 years ago
parent d9c70f09e2
commit 7d8404a1a2
  1. 7
      apps/remix-ide/src/app/panels/terminal.js
  2. 1
      libs/remix-ui/terminal/src/lib/remix-ui-terminal.tsx

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

@ -544,7 +544,6 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
}
const showTable = (opts) => {
console.log({ opts }, ' show table')
let msg = ''
let toHash
const data = opts.data // opts.data = data.tx

Loading…
Cancel
Save