Fix filter for lockedBalance
This commit is contained in:
parent
c87f8a1911
commit
ea3b14c489
2 changed files with 4 additions and 2 deletions
|
|
@ -24,7 +24,7 @@ angular.module('copayApp.services')
|
|||
r.availableBalanceBTC = (safeBalanceSat / COIN);
|
||||
r.safeUnspentCount = safeUnspentCount;
|
||||
|
||||
r.lockedBalance = (balanceSat - safeBalanceSat) * satToUnit;
|
||||
r.lockedBalance = $filter('noFractionNumber')((balanceSat - safeBalanceSat) * satToUnit);
|
||||
r.lockedBalanceBTC = (balanceSat - safeBalanceSat) / COIN;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue