Merge pull request #250 from olalonde/master

Transaction.js: removed confusing this.class assignment in file scope
This commit is contained in:
Ryan X. Charles 2014-04-11 11:44:41 -03:00
commit d09c7ab653
2 changed files with 0 additions and 2 deletions

View File

@ -36,7 +36,6 @@ function Script(buffer) {
this.chunks = [];
this.parse();
}
this.class = Script;
Script.TX_UNKNOWN = TX_UNKNOWN;
Script.TX_PUBKEY = TX_PUBKEY;

View File

@ -125,7 +125,6 @@ function Transaction(data) {
}) : [];
if (data.buffer) this._buffer = data.buffer;
};
this.class = Transaction;
Transaction.In = TransactionIn;
Transaction.Out = TransactionOut;