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

29 lines
712 B
HTML
Raw Normal View History

2016-04-12 07:15:33 +00:00
<h2>
Memory pool (size: {{mempool_size}})
</h2>
<div class="center">
<table class="center">
2016-04-13 07:00:07 +00:00
<tr>
<td>Age (h:m:s)</td>
2016-04-12 07:15:33 +00:00
<td>tx hash</td>
<td>tx fee</td>
2016-04-13 00:10:21 +00:00
<td>inputs/outputs</td>
2016-04-12 22:36:27 +00:00
<td>mixin</td>
2016-04-13 01:49:09 +00:00
<td>size [kbytes]</td>
2016-04-12 07:15:33 +00:00
</tr>
{{#mempooltxs}}
<tr>
2016-04-13 07:00:07 +00:00
<td>{{age}}</td>
2016-04-12 07:15:33 +00:00
<td>{{hash}}</td>
<td>{{fee}}</td>
2016-04-13 00:10:21 +00:00
<td>{{xmr_inputs}}/{{xmr_outputs}}</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>