Merge pull request #636 from dabura667/addfeeperkb

Add fee per kB to transaction view
This commit is contained in:
Matias Alejo Garcia 2015-07-07 11:59:33 -03:00
commit 9183ffcf10
1 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,10 @@
<td><strong translate>Size</strong></td>
<td class="text-muted text-right">{{tx.size}} (bytes)</td>
</tr>
<tr>
<td><strong translate>Fee Rate</strong></td>
<td class="text-muted text-right">{{$root.currency.getConvertion((tx.fees * 1000) / tx.size) + ' per kB' || ((tx.fees * 1000) / tx.size) + 'BTC per kB'}}</td>
</tr>
<tr>
<td><strong translate>Received Time</strong></td>
<td data-ng-show="tx.time" class="text-muted text-right">{{tx.time * 1000|date:'medium'}}</td>