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