From 3284bfcb2fd31d342b5d282bd11b5d073ac28c89 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Fri, 7 Mar 2014 18:09:06 -0300 Subject: [PATCH] remove console.logs --- ScriptInterpreter.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/ScriptInterpreter.js b/ScriptInterpreter.js index ee9f07b..58514ea 100644 --- a/ScriptInterpreter.js +++ b/ScriptInterpreter.js @@ -27,7 +27,6 @@ function spec(b) { throw new Error("ScriptInterpreter.eval() requires a callback"); } - console.log(script); var pc = 0; @@ -395,8 +394,6 @@ function spec(b) { // (x1 x2 - bool) var v1 = this.stackTop(2); var v2 = this.stackTop(1); - console.log(v1); - console.log(v2); var value = buffertools.compare(v1, v2) === 0; // OP_NOTEQUAL is disabled because it would be too easy to say