mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
33 lines
1.6 KiB
HTML
33 lines
1.6 KiB
HTML
---
|
|
layout: base
|
|
lang: en
|
|
id: alerts
|
|
title: Network status and alerts - Bitcoin
|
|
---
|
|
<link rel="alternate" type="application/rss+xml" href="/en/rss/alerts.rss" title="Bitcoin network status and alerts">
|
|
<div class="alerttext">
|
|
<h1>Network status and alerts<a type="application/rss+xml" href="/en/rss/alerts.rss"><img src="/img/icon_rss.svg" alt="rss" class="rssicon"></a></h1>
|
|
{% if site.STATUS == 0 %}
|
|
<div class="alertstatusinactive">There is no ongoing event on the Bitcoin network.</div>
|
|
{% else %}
|
|
<div class="alertstatusactive"">The following network event is ongoing.</div>
|
|
<ul class="alertsactive">
|
|
{% filter_for p in site.pages reversed sort_by:date category:alert %}{% if p.active == true %}
|
|
<li>
|
|
{{ p.date | date:"%Y-%m-%d" }} - <a href="{{ p.url | replace:'.html','' }}">{{ p.title }}</a>
|
|
</li>
|
|
{% endif %}{% endfilter_for %}
|
|
</ul>
|
|
{% endif %}
|
|
<ul class="alertsinactive">
|
|
{% filter_for p in site.pages reversed sort_by:date category:alert %}{% if p.active == false %}
|
|
<li>
|
|
{{ p.date | date:"%Y-%m-%d" }} - <a href="{{ p.url | replace:'.html','' }}">{{ p.title }}</a>
|
|
</li>
|
|
{% endif %}{% endfilter_for %}
|
|
</ul>
|
|
<p><a href="http://getaddr.bitnodes.io/">Status and distribution of Bitcoin nodes</a></p>
|
|
<p><a href="http://bitcoinstats.com/network/propagation/">Propagation time on the network</a></p>
|
|
<p><a href="https://en.bitcoin.it/wiki/Common_Vulnerabilities_and_Exposures">Complete CVE list</a></p>
|
|
<p>Please refer to the <a href="/en/development">development</a> page if you want to report a vulnerability.</p>
|
|
</div>
|