{% extends 'includes/base.html' %} {% block content %} Go Back {% set info = wallet.get_wallet_info() %}
Restore Height: {{ wallet.restore_height }}
Address: {{ wallet.address }}
{% if info %}Scanned Height: {{ info['scanned_height'] }} ({{ info['blockchain_height'] - info['scanned_height'] }} blocks away from top)
Chain Height: {{ info['blockchain_height'] }}
Spent Outputs: {{ info['spent_outputs'] | length }}
{% if wallet.is_active() %}Status: active
{% else %}Status: inactive
{% endif %} rescan {% if wallet.is_active() %} disable {% else %} enable {% endif %} {% else %}not connected to lws
{% endif %} {% endblock %}