{% extends "base_miner.html" %} {% block title %}Blocks — {{ coin.display_name if coin else 'getcryptopool' }}{% endblock %} {% set page = 'blocks' %} {% block content %}

Blocks found

{{ blocks|length }} most recent
{% if blocks %} {% for b in blocks %} {% endfor %}
HeightFoundStatusReward
{{ b.height }} ↗ {{ b.found_ts | ago }} {% if b.status == 'confirmed' %}confirmed{% elif b.status == 'orphan' %}orphan{% elif b.status == 'immature' %}immature{% else %}{{ b.status }}{% endif %} {{ b.reward | coin_amount_short }} {{ coin.ticker }}
{% else %}
No blocks found yet
When the pool finds a block it appears here with its maturity status.
{% endif %}
{% endblock %}