Updates native currency

This commit is contained in:
Gustavo Maximiliano Cortez 2017-01-16 10:29:36 -03:00
commit e9877234f6
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF

View file

@ -106,9 +106,8 @@ angular.module('copayApp.services').factory('coinbaseService', function($http, $
root.getAvailableCurrency = function() {
var config = configService.getSync().wallet.settings;
// ONLY "USD" and "EUR"
// ONLY "USD"
switch(config.alternativeIsoCode) {
case 'EUR' : return 'EUR';
default : return 'USD'
};
};