mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
28 lines
687 B
HTML
28 lines
687 B
HTML
<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>inputs/outputs</td>
|
|
<td>mixin</td>
|
|
</tr>
|
|
{{#mempooltxs}}
|
|
<tr>
|
|
<td>N/A</td>
|
|
<td>{{timestamp}}</td>
|
|
<td>{{hash}}</td>
|
|
<td>{{fee}}</td>
|
|
<td>{{xmr_inputs}}/{{xmr_outputs}}</td>
|
|
<td>{{mixin}}</td>
|
|
</tr>
|
|
{{/mempooltxs}}
|
|
</table>
|
|
|
|
|
|
</div>
|