Fix address view for new wallets
This commit is contained in:
parent
70fa50177c
commit
2a45533797
2 changed files with 2 additions and 2 deletions
|
|
@ -74,7 +74,7 @@ angular.module('copayApp.controllers').controller('addressesController', functio
|
|||
walletService.getLowUtxos($scope.wallet, levels, function(err, resp) {
|
||||
if (err) return;
|
||||
|
||||
if (resp.allUtxos && resp.allUtxos.length) {
|
||||
if (resp && resp.allUtxos && resp.allUtxos.length) {
|
||||
|
||||
|
||||
var allSum = lodash.sum(resp.allUtxos || 0, 'satoshis');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue