{% extends "base.html" %} {% import "macro/pagination.html" as pagination %} {% import "macro/opengraph.html" as opengraph %} {% block opengraph %} {{ opengraph::og( title="DEBUG - UTXO Set scans", description="Shows information about recent UTXO set scans for sanctioned UTXOS", url="/debug/sanctioned-utxo-scans", image_url="/og_image/index.png" ) }} {% endblock opengraph %} {% block content %}
This is a debug page.
{% if MAX_PAGES == 0 %}time (at end of scan) | height (at end of scan) | scan duration | count of sanctioned UTXOs | value of sanctioned UTXOs |
---|---|---|---|---|
{{ scan.end_time | date(format="%Y-%m-%d %H:%M:%S UTC") }} | {{ scan.end_height }} | {{ scan.duration_seconds }} seconds | {{ scan.utxo_count }} | {{ scan.utxo_amount / 100000000 }} BTC |