From 7706a17416f37fa3732fd5f9699feb16f3fe96a0 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Tue, 9 Sep 2014 13:46:31 -0300 Subject: [PATCH] fix typo --- js/services/controllerUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/services/controllerUtils.js b/js/services/controllerUtils.js index 1059a4ff6..5d21778b6 100644 --- a/js/services/controllerUtils.js +++ b/js/services/controllerUtils.js @@ -282,7 +282,7 @@ angular.module('copayApp.services') var allAddrs = $rootScope.addrInfos; var newAddrs = []; - for:(var i in allAddrs) { + for (var i in allAddrs) { var a = allAddrs[i]; if (!currentAddrs[a.addressStr] && !a.isChange) newAddrs.push(a.addressStr);