removed third params in ReactDom.render for terminal

pull/5370/head
davidzagi93@gmail.com 3 years ago
parent a1614f53f9
commit c52c99fa55
  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