cleanup after removal of soop

Removed some unnecessary parenthesise that hung around after the merge
of #417
This commit is contained in:
Linus Unnebäck 2014-07-12 12:14:56 +02:00
parent baf31e53dd
commit 3da6fe899f
29 changed files with 29 additions and 29 deletions

File diff suppressed because one or more lines are too long

View File

@ -561,4 +561,4 @@ Connection.prototype.parseMessage = function(command, payload) {
return data;
};
module.exports = (Connection);
module.exports = Connection;

View File

@ -29,4 +29,4 @@ Curve.getN = function() {
return n;
};
module.exports = (Curve);
module.exports = Curve;

View File

@ -20,4 +20,4 @@ ECIES.symmetricDecrypt = function(key, encrypted) {
return r;
};
module.exports = (ECIES);
module.exports = ECIES;

View File

@ -37,4 +37,4 @@ Message.magicHash = function(str) {
return hash;
};
module.exports = (Message);
module.exports = Message;

View File

@ -163,4 +163,4 @@ Opcode.asList = function() {
return keys;
};
module.exports = (Opcode);
module.exports = Opcode;

View File

@ -242,4 +242,4 @@ PayPro.prototype.sinVerify = function() {
return Message.verifyWithPubKey(pubkey, buf, sig);
};
module.exports = (PayPro);
module.exports = PayPro;

View File

@ -53,4 +53,4 @@ Peer.prototype.toBuffer = function() {
return put.buffer();
};
module.exports = (Peer);
module.exports = Peer;

View File

@ -311,4 +311,4 @@ PeerManager.prototype.discover = function(options, callback) {
return self;
};
module.exports = (PeerManager);
module.exports = PeerManager;

View File

@ -22,4 +22,4 @@ Point.multiply = function(p1, x) {
return Point.fromUncompressedPubKey(pubKey);
};
module.exports = (Point);
module.exports = Point;

View File

@ -79,4 +79,4 @@ PrivateKey.prototype.network = function() {
return answer;
};
module.exports = (PrivateKey);
module.exports = PrivateKey;

View File

@ -218,4 +218,4 @@ function rpc(request, callback) {
generateRPCMethods(RpcClient, callspec, rpc);
module.exports = (RpcClient);
module.exports = RpcClient;

View File

@ -60,4 +60,4 @@ SIN.prototype.validate = function() {
if (this.data.length != 22) throw new Error('invalid data length');
});
};
module.exports = (SIN);
module.exports = SIN;

View File

@ -34,4 +34,4 @@ SINKey.prototype.storeObj = function() {
return obj;
};
module.exports = (SINKey);
module.exports = SINKey;

View File

@ -640,4 +640,4 @@ Script.chunksToBuffer = function(chunks) {
module.exports = (Script);
module.exports = Script;

View File

@ -1082,4 +1082,4 @@ ScriptInterpreter.prototype.isCanonicalSignature = function(sig) {
return true;
};
module.exports = (ScriptInterpreter);
module.exports = ScriptInterpreter;

View File

@ -6,4 +6,4 @@ SecureRandom.getRandomBuffer = function(size) {
return crypto.randomBytes(size);
}
module.exports = (SecureRandom);
module.exports = SecureRandom;

View File

@ -627,4 +627,4 @@ Transaction.prototype.isComplete = function() {
};
module.exports = (Transaction);
module.exports = Transaction;

View File

@ -1031,4 +1031,4 @@ TransactionBuilder.prototype.merge = function(b) {
}
};
module.exports = (TransactionBuilder);
module.exports = TransactionBuilder;

View File

@ -136,4 +136,4 @@ Wallet.prototype.addScript = function(script) {
return addrStr;
};
module.exports = (Wallet);
module.exports = Wallet;

View File

@ -47,4 +47,4 @@ WalletKey.prototype.fromObj = function(obj) {
this.privKey.regenerateSync();
};
module.exports = (WalletKey);
module.exports = WalletKey;

View File

@ -33,4 +33,4 @@ ECIES.symmetricDecrypt = function(key, encrypted) {
return decbuf;
};
module.exports = (ECIES);
module.exports = ECIES;

View File

@ -28,4 +28,4 @@ Point.multiply = function(p1, x) {
return p;
};
module.exports = (Point);
module.exports = Point;

View File

@ -18,4 +18,4 @@ SecureRandom.getRandomBuffer = function(size) {
return buf;
};
module.exports = (SecureRandom);
module.exports = SecureRandom;

View File

@ -114,4 +114,4 @@ ECIES.prototype.getSfromPrivkey = function() {
return S;
};
module.exports = (ECIES);
module.exports = ECIES;

View File

@ -22,4 +22,4 @@ SecureRandom.getPseudoRandomBuffer = function(size) {
return b;
};
module.exports = (SecureRandom);
module.exports = SecureRandom;

View File

@ -134,4 +134,4 @@ Parser.prototype.varStr = function() {
return this.buffer(len);
};
module.exports = (Parser);
module.exports = Parser;

View File

@ -144,4 +144,4 @@ EncodedData.applyEncodingsTo = function(aClass) {
EncodedData.applyEncodingsTo(EncodedData);
module.exports = (EncodedData);
module.exports = EncodedData;

View File

@ -39,4 +39,4 @@ VersionedData.prototype.payload = function(data) {
return this.as('binary').slice(1);
};
module.exports = (VersionedData);
module.exports = VersionedData;