removed console.log

This commit is contained in:
Ivan Socolsky 2014-10-31 10:22:09 -03:00
commit 3e6408e58c

View file

@ -2853,7 +2853,6 @@ Wallet.prototype.getTransactionHistory = function(cb) {
var history = _.map(txs, function(tx) {
decorateTx(tx);
console.log(tx);
return tx;
});
return cb(null, history);