Currency str to uppercase
This commit is contained in:
parent
235e610d84
commit
4329142a2b
2 changed files with 6 additions and 6 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue