Fix: Removes arrow function syntax due to uglify issues
This commit is contained in:
parent
7430f6ca99
commit
b8b0617c34
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue