remove console logs

This commit is contained in:
Gabriel Bazán 2017-05-16 14:38:17 -03:00
commit 8122a84471

View file

@ -12,7 +12,6 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
$scope.wallets = profileService.getWallets({
onlyComplete: true
});
console.log($scope.wallets);
$scope.hasWallets = lodash.isEmpty($scope.wallets) ? false : true;
};
@ -159,7 +158,6 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
return popupService.showAlert(err);
}
$log.debug('Got toAddress:' + addr + ' | ' + item.name);
console.log(item);
return $state.transitionTo('tabs.send.amount', {
recipientType: item.recipientType,
toAddress: addr,