remove console.log

This commit is contained in:
Ivan Socolsky 2015-02-16 11:18:28 -03:00
parent ec491430c9
commit f87381577c
1 changed files with 1 additions and 2 deletions

View File

@ -317,7 +317,7 @@ CopayServer.prototype._getBlockExplorer = function(provider, network) {
url = 'https://test-insight.bitpay.com:443'
break;
}
console.log('[server.js.320:url:]',url); //TODO
console.log('[server.js.320:url:]', url); //TODO
return new Explorers.Insight(url, network);
break;
}
@ -650,7 +650,6 @@ CopayServer.prototype.signTx = function(opts, cb) {
txid: txid
});
console.log('[server.js.653:txp:]',txp); //TODO
return cb(null, txp);
});
});