{% extends "base.html" %} {% block title %} {{ block.super }} - Failed HTLCs{% endblock %} {% block content %} {% load humanize %} {% if failed_htlcs %}

Last 150 Failed HTLCs

{% for failed_htlc in failed_htlcs %} {% endfor %}
Timestamp Chan In ID Chan Out ID Chan In Alias Chan Out Alias Forward Amount Actual Outbound Potential Fee HTLC Failure Failure Detail
{{ failed_htlc.timestamp|naturaltime }} {{ failed_htlc.chan_id_in }} {{ failed_htlc.chan_id_out }} {% if failed_htlc.chan_in_alias == '' %}---{% else %}{{ failed_htlc.chan_in_alias }}{% endif %} {% if failed_htlc.chan_out_alias == '' %}---{% else %}{{ failed_htlc.chan_out_alias }}{% endif %} {{ failed_htlc.amount|intcomma }} {{ failed_htlc.chan_out_liq|intcomma }} {{ failed_htlc.chan_out_pending|intcomma }} {{ failed_htlc.missed_fee|intcomma }} {% if failed_htlc.wire_failure == 11 %}Amount Below Minimum{% elif failed_htlc.wire_failure == 12 %}Fee Insufficient{% elif failed_htlc.wire_failure == 15 %}Temporary Channel Failure{% elif failed_htlc.wire_failure == 18 %}Unknown Next Peer{% elif failed_htlc.wire_failure == 22 %}Expiry Too Far{% else %}{{ failed_htlc.wire_failure }}{% endif %} {% if failed_htlc.failure_detail == 1 %}---{% elif failed_htlc.failure_detail == 5 %}HTLC Exceeds Max{% elif failed_htlc.failure_detail == 6 %}Insufficient Balance{% elif failed_htlc.failure_detail == 13 %}Invoice Not Open{% elif failed_htlc.failure_detail == 20 %}Invalid Keysend{% elif failed_htlc.failure_detail == 22 %}Circular Route{% else %}{{ failed_htlc.failure_detail }}{% endif %}
{% endif %} {% if not failed_htlcs %}

You dont have any failed HTLCs yet.

{% endif %} {% if agg_failed_htlcs %}

Top 21 Failed Downstream Routes

{% for failed_htlc in agg_failed_htlcs %} {% endfor %}
Chan In ID Chan Out ID Chan In Alias Chan Out Alias Count Volume
{{ failed_htlc.chan_id_in }} {{ failed_htlc.chan_id_out }} {% if failed_htlc.chan_in_alias == '' %}---{% else %}{{ failed_htlc.chan_in_alias }}{% endif %} {% if failed_htlc.chan_out_alias == '' %}---{% else %}{{ failed_htlc.chan_out_alias }}{% endif %} {{ failed_htlc.count|intcomma }} {{ failed_htlc.volume|intcomma }}
{% endif %} {% if not agg_failed_htlcs %}

You dont have any failed downstream routes in the last 7 days.

{% endif %} {% endblock %}