Add confirmations to tx table
This commit is contained in:
committed by
Michael Vines
parent
f55c53e5ca
commit
69502cc68e
@@ -138,6 +138,7 @@ const renderTransactionRow = (transaction: Transaction) => {
|
||||
}
|
||||
|
||||
const slotText = `${transaction.slot || "-"}`;
|
||||
const confirmationsText = `${transaction.confirmations || "-"}`;
|
||||
|
||||
return (
|
||||
<tr key={transaction.id}>
|
||||
@@ -152,7 +153,7 @@ const renderTransactionRow = (transaction: Transaction) => {
|
||||
<td>
|
||||
<code>{transaction.signature}</code>
|
||||
</td>
|
||||
<td>-</td>
|
||||
<td className="text-uppercase">{confirmationsText}</td>
|
||||
<td>{slotText}</td>
|
||||
</tr>
|
||||
);
|
||||
|
Reference in New Issue
Block a user