removes console log

This commit is contained in:
Gustavo Maximiliano Cortez 2016-08-25 17:41:50 -03:00
parent 2108a29006
commit 0657cb3438
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 0 additions and 2 deletions

View File

@ -6,11 +6,9 @@ angular.module('copayApp.services').factory('addressbookService', function(bitco
var getNetwork = function(addr) {
var Address = bitcore.Address;
if (Address.isValid(addr, 'livenet')) {
console.log('[addressbookService.js:8] LIVENET'); //TODO
return 'livenet';
}
if (Address.isValid(addr, 'testnet')) {
console.log('[addressbookService.js:12] TESTNET'); //TODO
return 'testnet';
}
};