Merge pull request #638 from dabura667/addfeeperkb

Fix fee per kb
This commit is contained in:
Matias Alejo Garcia 2015-07-07 20:48:51 -03:00
commit 8241dfe9ba

View File

@ -52,7 +52,7 @@
<td><strong translate>Size</strong></td> <td><strong translate>Size</strong></td>
<td class="text-muted text-right">{{tx.size}} (bytes)</td> <td class="text-muted text-right">{{tx.size}} (bytes)</td>
</tr> </tr>
<tr> <tr data-ng-show="tx.fees">
<td><strong translate>Fee Rate</strong></td> <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> <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>
@ -96,4 +96,3 @@
</div> </div>
</div> </div>
</section> </section>