Skip to content

Commit

Permalink
Merge pull request #419 from LinusU/patch-1
Browse files Browse the repository at this point in the history
cleanup after removal of soop
  • Loading branch information
Ryan X. Charles committed Jul 12, 2014
2 parents baf31e5 + 3da6fe8 commit e75267b
Show file tree
Hide file tree
Showing 29 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion lib/BIP39WordlistEn.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/Connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -561,4 +561,4 @@ Connection.prototype.parseMessage = function(command, payload) {
return data;
};

module.exports = (Connection);
module.exports = Connection;
2 changes: 1 addition & 1 deletion lib/Curve.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ Curve.getN = function() {
return n;
};

module.exports = (Curve);
module.exports = Curve;
2 changes: 1 addition & 1 deletion lib/ECIES.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ ECIES.symmetricDecrypt = function(key, encrypted) {
return r;
};

module.exports = (ECIES);
module.exports = ECIES;
2 changes: 1 addition & 1 deletion lib/Message.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ Message.magicHash = function(str) {
return hash;
};

module.exports = (Message);
module.exports = Message;
2 changes: 1 addition & 1 deletion lib/Opcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,4 @@ Opcode.asList = function() {
return keys;
};

module.exports = (Opcode);
module.exports = Opcode;
2 changes: 1 addition & 1 deletion lib/PayPro.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,4 +242,4 @@ PayPro.prototype.sinVerify = function() {
return Message.verifyWithPubKey(pubkey, buf, sig);
};

module.exports = (PayPro);
module.exports = PayPro;
2 changes: 1 addition & 1 deletion lib/Peer.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ Peer.prototype.toBuffer = function() {
return put.buffer();
};

module.exports = (Peer);
module.exports = Peer;
2 changes: 1 addition & 1 deletion lib/PeerManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,4 +311,4 @@ PeerManager.prototype.discover = function(options, callback) {
return self;
};

module.exports = (PeerManager);
module.exports = PeerManager;
2 changes: 1 addition & 1 deletion lib/Point.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ Point.multiply = function(p1, x) {
return Point.fromUncompressedPubKey(pubKey);
};

module.exports = (Point);
module.exports = Point;
2 changes: 1 addition & 1 deletion lib/PrivateKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ PrivateKey.prototype.network = function() {
return answer;
};

module.exports = (PrivateKey);
module.exports = PrivateKey;
2 changes: 1 addition & 1 deletion lib/RpcClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,4 @@ function rpc(request, callback) {

generateRPCMethods(RpcClient, callspec, rpc);

module.exports = (RpcClient);
module.exports = RpcClient;
2 changes: 1 addition & 1 deletion lib/SIN.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
2 changes: 1 addition & 1 deletion lib/SINKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ SINKey.prototype.storeObj = function() {
return obj;
};

module.exports = (SINKey);
module.exports = SINKey;
2 changes: 1 addition & 1 deletion lib/Script.js
Original file line number Diff line number Diff line change
Expand Up @@ -640,4 +640,4 @@ Script.chunksToBuffer = function(chunks) {



module.exports = (Script);
module.exports = Script;
2 changes: 1 addition & 1 deletion lib/ScriptInterpreter.js
Original file line number Diff line number Diff line change
Expand Up @@ -1082,4 +1082,4 @@ ScriptInterpreter.prototype.isCanonicalSignature = function(sig) {
return true;
};

module.exports = (ScriptInterpreter);
module.exports = ScriptInterpreter;
2 changes: 1 addition & 1 deletion lib/SecureRandom.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ SecureRandom.getRandomBuffer = function(size) {
return crypto.randomBytes(size);
}

module.exports = (SecureRandom);
module.exports = SecureRandom;
2 changes: 1 addition & 1 deletion lib/Transaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -627,4 +627,4 @@ Transaction.prototype.isComplete = function() {
};


module.exports = (Transaction);
module.exports = Transaction;
2 changes: 1 addition & 1 deletion lib/TransactionBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -1031,4 +1031,4 @@ TransactionBuilder.prototype.merge = function(b) {
}
};

module.exports = (TransactionBuilder);
module.exports = TransactionBuilder;
2 changes: 1 addition & 1 deletion lib/Wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,4 @@ Wallet.prototype.addScript = function(script) {
return addrStr;
};

module.exports = (Wallet);
module.exports = Wallet;
2 changes: 1 addition & 1 deletion lib/WalletKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ WalletKey.prototype.fromObj = function(obj) {
this.privKey.regenerateSync();
};

module.exports = (WalletKey);
module.exports = WalletKey;
2 changes: 1 addition & 1 deletion lib/browser/ECIES.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ ECIES.symmetricDecrypt = function(key, encrypted) {
return decbuf;
};

module.exports = (ECIES);
module.exports = ECIES;
2 changes: 1 addition & 1 deletion lib/browser/Point.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ Point.multiply = function(p1, x) {
return p;
};

module.exports = (Point);
module.exports = Point;
2 changes: 1 addition & 1 deletion lib/browser/SecureRandom.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ SecureRandom.getRandomBuffer = function(size) {
return buf;
};

module.exports = (SecureRandom);
module.exports = SecureRandom;
2 changes: 1 addition & 1 deletion lib/common/ECIES.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,4 @@ ECIES.prototype.getSfromPrivkey = function() {
return S;
};

module.exports = (ECIES);
module.exports = ECIES;
2 changes: 1 addition & 1 deletion lib/common/SecureRandom.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ SecureRandom.getPseudoRandomBuffer = function(size) {
return b;
};

module.exports = (SecureRandom);
module.exports = SecureRandom;
2 changes: 1 addition & 1 deletion util/BinaryParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,4 @@ Parser.prototype.varStr = function() {
return this.buffer(len);
};

module.exports = (Parser);
module.exports = Parser;
2 changes: 1 addition & 1 deletion util/EncodedData.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@ EncodedData.applyEncodingsTo = function(aClass) {

EncodedData.applyEncodingsTo(EncodedData);

module.exports = (EncodedData);
module.exports = EncodedData;
2 changes: 1 addition & 1 deletion util/VersionedData.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ VersionedData.prototype.payload = function(data) {
return this.as('binary').slice(1);
};

module.exports = (VersionedData);
module.exports = VersionedData;

0 comments on commit e75267b

Please sign in to comment.