Commit d9c70f09 authored by davidzagi93@gmail.com's avatar davidzagi93@gmail.com

log response of show table

parent c58fc2d6
...@@ -499,7 +499,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => { ...@@ -499,7 +499,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
<div className='txItem'><span className='txItemTitle'>to:</span> {to}</div> <div className='txItem'><span className='txItemTitle'>to:</span> {to}</div>
<div className='txItem'><span className='txItemTitle'>value:</span> {value} wei</div> <div className='txItem'><span className='txItemTitle'>value:</span> {value} wei</div>
<div className='txItem'><span className='txItemTitle'>data:</span> {input}</div> <div className='txItem'><span className='txItemTitle'>data:</span> {input}</div>
<div className='txItem'><span className='txItemTitle'>logs:</span> {logs.toString()}</div> <div className='txItem'><span className='txItemTitle'>logs:</span> {logs}</div>
<div className='txItem'><span className='txItemTitle'>hash:</span> {hash}</div> <div className='txItem'><span className='txItemTitle'>hash:</span> {hash}</div>
</span> </span>
</div>) </div>)
...@@ -512,7 +512,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => { ...@@ -512,7 +512,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
<div className='txItem'><span className='txItemTitle'>to:</span> {to}</div> <div className='txItem'><span className='txItemTitle'>to:</span> {to}</div>
<div className='txItem'><span className='txItemTitle'>value:</span> {value} wei</div> <div className='txItem'><span className='txItemTitle'>value:</span> {value} wei</div>
<div className='txItem'><span className='txItemTitle'>data:</span> {input}</div> <div className='txItem'><span className='txItemTitle'>data:</span> {input}</div>
<div className='txItem'><span className='txItemTitle'>logs:</span> {logs.toString()}</div> <div className='txItem'><span className='txItemTitle'>logs:</span> {logs}</div>
<div className='txItem'><span className='txItemTitle'>hash:</span> {hash}</div> <div className='txItem'><span className='txItemTitle'>hash:</span> {hash}</div>
</span> </span>
</div>) </div>)
...@@ -544,6 +544,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => { ...@@ -544,6 +544,7 @@ export const RemixUiTerminal = (props: RemixUiTerminalProps) => {
} }
const showTable = (opts) => { const showTable = (opts) => {
console.log({ opts }, ' show table')
let msg = '' let msg = ''
let toHash let toHash
const data = opts.data // opts.data = data.tx const data = opts.data // opts.data = data.tx
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment