Fix units. Ref formatAmount
This commit is contained in:
parent
4329142a2b
commit
7d9f7d9303
2 changed files with 9 additions and 9 deletions
|
|
@ -50,7 +50,7 @@ angular.module('copayApp.controllers').controller('addressesController', functio
|
|||
$scope.latestWithBalance = lodash.slice(withBalance, 0, BALANCE_ADDRESS_LIMIT);
|
||||
|
||||
lodash.each(withBalance, function(a) {
|
||||
a.balanceStr = txFormatService.formatAmount(a.amount);
|
||||
a.balanceStr = txFormatService.formatAmountStr($scope.wallet.coin, a.amount);
|
||||
});
|
||||
|
||||
$scope.viewAll = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue