Removed whitespaces

This commit is contained in:
Matias Pando 2014-09-23 11:24:08 -03:00
commit 86c8137da0
3 changed files with 3 additions and 8 deletions

View file

@ -377,7 +377,6 @@ Network.prototype.send = function(dest, payload, cb) {
var message = this.encode(to, payload);
this.socket.emit('message', message);
}
if (typeof cb === 'function') cb();
@ -406,6 +405,4 @@ Network.prototype.lockIncommingConnections = function(allowedCopayerIdsArray) {
}
};
module.exports = Network;