diff --git a/js/controllers/history.js b/js/controllers/history.js index f3fb67a4a..b7331b7ad 100644 --- a/js/controllers/history.js +++ b/js/controllers/history.js @@ -61,7 +61,7 @@ angular.module('copayApp.controllers').controller('HistoryController', _.each(res, function (r) { r.ts = r.minedTs || r.sentTs; - if (r.action === 'sent') { + if (r.action === 'sent' && r.peerActions) { r.actionList = controllerUtils.getActionList(r.peerActions); } }); diff --git a/js/controllers/homeWallet.js b/js/controllers/homeWallet.js index 23969c6af..c09158512 100644 --- a/js/controllers/homeWallet.js +++ b/js/controllers/homeWallet.js @@ -10,7 +10,6 @@ angular.module('copayApp.controllers').controller('HomeWalletController', if ($rootScope.addrInfos) { $scope.address = $rootScope.addrInfos[0]; - console.log('$scope.address', $scope.address); } }