{% extends "base.html" %} {% block main %}
TxID | Address | Amount | Confirmations | Time | |
---|---|---|---|---|---|
{# coinbase txs are 'immature' until 100 confs #}
{% if tx['category'] == 'immature' %}
|
{{tx["txid"]}} | {{wallet.getaddressname(tx["address"] if tx["category"] != "send" or tx["destination"] == None else tx["destination"]["address"], -1)}} | {{tx["amount"] if tx["category"] != "send" or tx["destination"] == None else tx["destination"]["amount"] | btcamount}} | {%if tx["block_height"] == -1 %} Pending {% else %} {{specter.info.blocks - tx["block_height"] + 1}} {% endif %} | {{tx["time"] | datetime}} | No transactions yet. | {% endif %} |