Browse Source

remove comment

patch-2
Manuel Araoz 10 years ago
parent
commit
bbd48f868d
  1. 1
      test/script/interpreter.js

1
test/script/interpreter.js

@ -36,7 +36,6 @@ Script.fromBitcoindString = function(str) {
var tstr = token.slice(1, token.length - 1); var tstr = token.slice(1, token.length - 1);
var cbuf = new Buffer(tstr); var cbuf = new Buffer(tstr);
tbuf = Script().add(cbuf).toBuffer(); tbuf = Script().add(cbuf).toBuffer();
//bw.writeUInt8(tstr.length);
bw.write(tbuf); bw.write(tbuf);
} else if (typeof Opcode['OP_' + token] !== 'undefined') { } else if (typeof Opcode['OP_' + token] !== 'undefined') {
opstr = 'OP_' + token; opstr = 'OP_' + token;

Loading…
Cancel
Save