remove commented code

This commit is contained in:
Manuel Araoz 2014-12-04 15:10:19 -03:00
parent eaaab5c7d0
commit d19ad6f384
1 changed files with 0 additions and 10 deletions

View File

@ -198,16 +198,6 @@ Script.prototype.isPublicKeyHashIn = function() {
this.chunks[0].buf.length <= 0x49 &&
this.chunks[1].buf &&
PublicKey.isValid(this.chunks[1].buf));
/*
(
// compressed public key
(
(this.chunks[1].buf[0] === 0x02 || this.chunks[1].buf[0] === 0x03) &&
this.chunks[1].buf.length === 0x21) ||
// uncompressed public key
(this.chunks[1].buf[0] === 0x04 && this.chunks[1].buf.length === 0x41))
);
*/
};
/**