You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
716 B
HTML
30 lines
716 B
HTML
9 years ago
|
<h2>
|
||
|
Memory pool (size: {{mempool_size}})
|
||
|
</h2>
|
||
|
<div class="center">
|
||
|
|
||
|
<table class="center">
|
||
|
<tr>
|
||
|
<td>height</td>
|
||
|
<td>timestamp</td>
|
||
|
<td>tx hash</td>
|
||
|
<td>tx fee</td>
|
||
|
<td>no_of_txs</td>
|
||
|
<td>xmr_outputs</td>
|
||
|
<td>mixin_range</td>
|
||
|
</tr>
|
||
|
{{#mempooltxs}}
|
||
|
<tr>
|
||
|
<td>N/A</td>
|
||
|
<td>{{timestamp}}</td>
|
||
|
<td>{{hash}}</td>
|
||
|
<td>{{fee}}</td>
|
||
|
<td>{{xmr_outputs}}</td>
|
||
|
<td>{{mixin_range}}</td>
|
||
|
</tr>
|
||
|
{{/mempooltxs}}
|
||
|
</table>
|
||
|
|
||
|
|
||
|
</div>
|