Show fiat in the alternative currency

This commit is contained in:
Gustavo Maximiliano Cortez 2017-03-07 16:50:44 -03:00
commit 4ee3c5889d
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 6 additions and 2 deletions

View file

@ -84,6 +84,9 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
}
$scope.btx = txFormatService.processTx(tx);
txFormatService.formatAlternativeStr(tx.fees, function(v) {
$scope.feeFiatStr = v;
});
if ($scope.btx.action != 'invalid') {
if ($scope.btx.action == 'sent') $scope.title = gettextCatalog.getString('Sent Funds');