removes console log
This commit is contained in:
parent
2108a29006
commit
0657cb3438
1 changed files with 0 additions and 2 deletions
|
|
@ -6,11 +6,9 @@ angular.module('copayApp.services').factory('addressbookService', function(bitco
|
||||||
var getNetwork = function(addr) {
|
var getNetwork = function(addr) {
|
||||||
var Address = bitcore.Address;
|
var Address = bitcore.Address;
|
||||||
if (Address.isValid(addr, 'livenet')) {
|
if (Address.isValid(addr, 'livenet')) {
|
||||||
console.log('[addressbookService.js:8] LIVENET'); //TODO
|
|
||||||
return 'livenet';
|
return 'livenet';
|
||||||
}
|
}
|
||||||
if (Address.isValid(addr, 'testnet')) {
|
if (Address.isValid(addr, 'testnet')) {
|
||||||
console.log('[addressbookService.js:12] TESTNET'); //TODO
|
|
||||||
return 'testnet';
|
return 'testnet';
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue