{% extends "base" %} {% block content %} {% for i in tx_info %} {{i.block_height}} {{i.block_timestamp}} {{i.double_spend_seen}} {{i.in_pool}} {{i.output_indices}} {% endfor %}
Go Back

Transaction {{ tx_hash | truncate(length=4) }}

Full Hash: {{ tx_hash }}

Block Timestamp: {% if tx_info.0.block_timestamp %}{{ tx_info.0.block_timestamp }}{% else %}?{% endif %}

Block Height

{% if tx_info.0.block_height %}{{ tx_info.0.block_height }}{% else %}pending{% endif %}

In Pool

{{ tx_info.0.in_pool }}

Double Spend

{{ tx_info.0.double_spend_seen }}



{% if tx_info.0.block_height %}

View Block

{% endif %}
{% endblock content %}