Commit cff75db2 authored by yann300's avatar yann300

fix displaying call in terminal

parent 87496120
...@@ -371,7 +371,7 @@ function txDetails (e, tx, data, obj) { ...@@ -371,7 +371,7 @@ function txDetails (e, tx, data, obj) {
log.appendChild(arrowUp) log.appendChild(arrowUp)
table = createTable({ table = createTable({
hash: data.tx.hash, hash: data.tx.hash,
status: data.receipt.status, status: data.receipt ? data.receipt.status : null,
isCall: data.tx.isCall, isCall: data.tx.isCall,
contractAddress: data.tx.contractAddress, contractAddress: data.tx.contractAddress,
data: data.tx, 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