adds pending txs service
This commit is contained in:
parent
e52d45c5d8
commit
b73f711fff
5 changed files with 19 additions and 8 deletions
|
|
@ -49,6 +49,7 @@
|
|||
<th>Type</th>
|
||||
<th class="hide-for-small-only">Status</th>
|
||||
<th>Balance</th>
|
||||
<th>Approx Size</th>
|
||||
<th class="text-right">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
@ -69,6 +70,12 @@
|
|||
{{item.balanceInfo.totalBalance || 0 |noFractionNumber}} {{item.settings.unitName}}
|
||||
</span>
|
||||
</td>
|
||||
<td>
|
||||
<span>
|
||||
{{item.sizes().total/1000}} kB
|
||||
</span>
|
||||
</td>
|
||||
|
||||
<td class="text-right">
|
||||
<div ng-show="loading != item.id">
|
||||
<a title="Download Backup" class="text-gray" ng-click="downloadWalletBackup(item)"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<div class="send" ng-controller="SendController" ng-init="loadTxs()">
|
||||
<div class="send" ng-controller="SendController" ng-init="init()">
|
||||
<div class="row" ng-show="txps.length != 0">
|
||||
<div class="large-12 columns">
|
||||
<h2 translate>Pending Transactions Proposals</h2>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue