diff --git a/www/js/services/currency-services.js b/www/js/services/currency-services.js index c0eb6ea496e5256f15cac08b78a1d383099d8504..cc15c16cd115dbe537bfde043d0bc48324e95618 100644 --- a/www/js/services/currency-services.js +++ b/www/js/services/currency-services.js @@ -98,7 +98,7 @@ angular.module('cesium.currency.services', ['ngApi', 'cesium.bma.services']) }); } - function loadCurrentUD(res, retryCount) { + function loadCurrentUD() { return BMA.blockchain.stats.ud() .then(function(res) { // Special case for currency init @@ -111,7 +111,7 @@ angular.module('cesium.currency.services', ['ngApi', 'cesium.bma.services']) .catch(function(err) { data.currentUD = null; throw err; - }) + }); } /**