rm console.log

This commit is contained in:
Matias Alejo Garcia 2018-03-13 16:13:33 -03:00
parent 52c26ced2e
commit 547e984b2c
No known key found for this signature in database
GPG Key ID: 02470DB551277AB3
1 changed files with 0 additions and 2 deletions

View File

@ -3193,10 +3193,8 @@ WalletService.prototype.getTxHistory = function(opts, cb) {
bc.getTransactions(addressStrs, from, to, function(err, rawTxs, total) {
if (err) return next(err);
console.log('[server.js.3197: RAWtxs:]', JSON.stringify(rawTxs, null, 4)); //TODO
txs = self._normalizeTxHistory(rawTxs);
console.log('[server.js.3197:txs:]', JSON.stringify(txs, null, 4)); //TODO
totalItems = total;
return next();
});