onion-wownero-blockchain-ex.../src/templates/mempool.html

35 lines
971 B
HTML
Raw Normal View History

2016-04-12 07:15:33 +00:00
<h2>
2017-01-17 00:40:14 +00:00
Memory pool (no of txs: {{mempool_size}}, size: {{mempool_size_kB}} kB)
2016-04-12 07:15:33 +00:00
</h2>
<div class="center">
<table class="center">
2016-05-01 04:32:01 +00:00
<tr>
<td>height</td>
2016-04-14 00:31:19 +00:00
<td>age [h:m:s]</td>
<td>transaction hash</td>
<td>fee</td>
2016-04-24 01:44:29 +00:00
<td>outputs</td>
2016-05-01 03:43:48 +00:00
<td>in/out</td>
2017-01-11 03:43:20 +00:00
<td>rct/type</td>
2016-04-12 22:36:27 +00:00
<td>mixin</td>
2016-04-14 00:31:19 +00:00
<td>size [kB]</td>
2016-04-12 07:15:33 +00:00
</tr>
{{#mempooltxs}}
<tr>
2016-05-01 04:32:01 +00:00
<td>N/A</td>
2016-04-13 07:00:07 +00:00
<td>{{age}}</td>
2016-04-21 08:38:50 +00:00
<td><a href="/tx/{{hash}}">{{hash}}</a></td>
2016-04-12 07:15:33 +00:00
<td>{{fee}}</td>
2016-04-24 01:44:29 +00:00
<td>{{xmr_outputs}}</td>
2016-05-01 03:43:48 +00:00
<td>{{no_inputs}}/{{no_outputs}}</td>
2017-01-11 03:43:20 +00:00
<td>{{is_ringct}}{{rct_type}}</td>
2016-04-12 22:36:27 +00:00
<td>{{mixin}}</td>
2016-04-13 01:49:09 +00:00
<td>{{txsize}}</td>
2016-04-12 07:15:33 +00:00
</tr>
{{/mempooltxs}}
</table>
</div>