diff --git a/src/js/services/profileService.js b/src/js/services/profileService.js index ad82bb531..c0087ca88 100644 --- a/src/js/services/profileService.js +++ b/src/js/services/profileService.js @@ -1043,7 +1043,7 @@ angular.module('copayApp.services') var walletsBtc = root.getWallets({coin: 'btc'}); var totalBtc = 0; - walletsBtc.forEach( (value, key, index) => { + walletsBtc.forEach(function(value, key, index) { totalBtc += parseFloat(value.cachedBalance); });