rm console.log

This commit is contained in:
Matias Alejo Garcia 2015-01-05 14:01:16 -03:00
commit b46a05fe4a

View file

@ -371,7 +371,6 @@ Network.prototype.getCopayerIds = function() {
for (var peerId in this.copayerForPeer) { for (var peerId in this.copayerForPeer) {
copayerIds.push(this.copayerForPeer[peerId]); copayerIds.push(this.copayerForPeer[peerId]);
} }
console.log('[Async.js.373]', copayerIds); //TODO
return copayerIds; return copayerIds;
} }
}; };
@ -384,7 +383,6 @@ Network.prototype.send = function(dest, payload, cb) {
var self = this; var self = this;
if (!dest) { if (!dest) {
dest = this.getCopayerIds(); dest = this.getCopayerIds();
console.log('[Async.js.383:dest:]', dest); //TODO
payload.isBroadcast = 1; payload.isBroadcast = 1;
} }