mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-06 02:38:11 +01:00
ui: Can display chain A lock tx inputs.
This commit is contained in:
@@ -101,6 +101,16 @@
|
||||
{% endif %}
|
||||
</form>
|
||||
|
||||
{% if data.chain_a_lock_tx_inputs %}
|
||||
<h5>Chain A Lock TX Inputs:</h5>
|
||||
<table>
|
||||
<tr><th>txid</th><th>vout</th><th>locked</th></tr>
|
||||
{% for txi in data.chain_a_lock_tx_inputs %}
|
||||
<tr><td>{{ txi.txid }}</td><td>{{ txi.vout }}</td><td>{% if txi.islocked %} true {% else %} false {% endif %}</td></tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% endif %}
|
||||
|
||||
|
||||
<h4>Old States</h4>
|
||||
<table>
|
||||
|
||||
Reference in New Issue
Block a user