Currency str to uppercase

This commit is contained in:
Gustavo Maximiliano Cortez 2017-08-30 19:40:35 -03:00
commit 4329142a2b
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 6 additions and 6 deletions

View file

@ -19,7 +19,7 @@ angular.module('copayApp.services').factory('txFormatService', function($filter,
root.formatAmountStr = function(coin, satoshis) {
if (isNaN(satoshis)) return;
return root.formatAmount(satoshis) + ' ' + coin;
return root.formatAmount(satoshis) + ' ' + (coin).toUpperCase();
};
root.toFiat = function(coin, satoshis, code, cb) {