Currency in uppercase

This commit is contained in:
Gustavo Maximiliano Cortez 2017-08-28 00:00:37 -03:00
commit 378a780df2
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF

View file

@ -234,7 +234,7 @@ angular.module('copayApp.controllers').controller('amountController', function($
$state.transitionTo($scope.nextStep, {
id: _id,
amount: $scope.useSendMax ? null : _amount,
currency: $scope.showAlternativeAmount ? $scope.alternativeIsoCode : $scope.coin,
currency: $scope.showAlternativeAmount ? $scope.alternativeIsoCode : ($scope.coin).toUpperCase(),
coin: $scope.coin,
useSendMax: $scope.useSendMax
});