Skip to content

Commit

Permalink
remove console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
maraoz committed Mar 7, 2014
1 parent 9a64cb0 commit 3284bfc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ScriptInterpreter.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ function spec(b) {
throw new Error("ScriptInterpreter.eval() requires a callback");
}

console.log(script);

var pc = 0;

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 3284bfc

Please sign in to comment.