From 06b5108133bd6438c44aa558dca3622352611398 Mon Sep 17 00:00:00 2001 From: Kadir Sekha Date: Wed, 7 Mar 2018 14:59:52 +0900 Subject: [PATCH] removed stupid console log showing redundant notifications --- src/js/controllers/activity.js | 4 ---- src/js/controllers/tab-home.js | 1 - 2 files changed, 5 deletions(-) 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; }