Record the coin b lock tx before it's confirmed.

This commit is contained in:
tecnovert
2020-12-09 21:30:21 +02:00
parent ffc164bc34
commit 4bde19fe33
4 changed files with 44 additions and 17 deletions

View File

@@ -24,9 +24,9 @@
{% if data.show_txns %}
<h4>Transactions</h4>
<table>
<tr><th>Tx Type</th><th>Tx ID</th></tr>
<tr><th>Tx Type</th><th>Tx ID</th><th>Blocks Deep</th></tr>
{% for tx in data.txns %}
<tr><td>{{ tx.type }}</td><td>{{ tx.txid }}</td></tr>
<tr><td>{{ tx.type }}</td><td>{{ tx.txid }}</td><td>{{ tx.confirms }}</td></tr>
{% endfor %}
</table>
{% endif %}