From 8929c51d98f532fc8878a28d16e1de7279de1343 Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Fri, 13 Jun 2014 10:39:49 +1000 Subject: [PATCH] Script: remove clone --- src/script.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/script.js b/src/script.js index 95866b9..f0d6757 100644 --- a/src/script.js +++ b/src/script.js @@ -78,10 +78,6 @@ Script.fromHex = function(hex) { Script.EMPTY = Script.fromChunks([]) // Operations -Script.prototype.clone = function() { - return new Script(this.buffer, this.chunks) -} - Script.prototype.getHash = function() { return crypto.hash160(this.buffer) }