Skip to content

Commit

Permalink
[ETCM-472] Fix erroneous name statusCode
Browse files Browse the repository at this point in the history
  • Loading branch information
jb-lunatech committed Apr 8, 2021
1 parent d72aa0d commit 284cb9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/blockchain/TransactionInfoTable.js
Expand Up @@ -46,7 +46,7 @@ const TransactionInfoTable = ({tx, receipt}) => {
<tr>
<td>Status code</td>
<td>
<span> { receipt.statusCode ? `${receipt.statusCode} : ${translateReceiptStatusCode(receipt.statusCode)}` : '???' } </span>
<span> { receipt.status ? `${receipt.status} : ${translateReceiptStatusCode(receipt.status)}` : '???' } </span>
</td>
</tr>
}
Expand Down

0 comments on commit 284cb9e

Please sign in to comment.