From d19ad6f384e6404fd2cb26347b49118938e72802 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Thu, 4 Dec 2014 15:10:19 -0300 Subject: [PATCH] remove commented code --- lib/script.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/script.js b/lib/script.js index ab0398a..4281ac8 100644 --- a/lib/script.js +++ b/lib/script.js @@ -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)) - ); - */ }; /**