diff --git a/src/js/controllers/activity.js b/src/js/controllers/activity.js index 70f9bfb76..f1ca3a511 100644 --- a/src/js/controllers/activity.js +++ b/src/js/controllers/activity.js @@ -30,10 +30,6 @@ angular.module('copayApp.controllers').controller('activityController', var notificationsAfterCheck = n.length; var removedNotifications = notificationsBeforeCheck - notificationsAfterCheck; - if (notificationsBeforeCheck != notificationsAfterCheck) { - console.log("Found a redundant notification. Removed " + removedNotifications); - } - console.log(n); $scope.fetchingNotifications = false; diff --git a/src/js/controllers/tab-home.js b/src/js/controllers/tab-home.js index 1904566b9..231aa2375 100644 --- a/src/js/controllers/tab-home.js +++ b/src/js/controllers/tab-home.js @@ -289,7 +289,6 @@ angular.module('copayApp.controllers').controller('tabHomeController', var removedNotifications = notificationsBeforeCheck - notificationsAfterCheck; if (notificationsBeforeCheck != notificationsAfterCheck) { - console.log("Found a redundant notification. Removed " + removedNotifications); total = total - removedNotifications; }