tx_valid tests passing!

This commit is contained in:
Manuel Araoz 2014-12-16 18:45:03 -03:00
parent b3be9461cf
commit cd00b3ebe5
2 changed files with 1 additions and 2 deletions

View File

@ -162,7 +162,6 @@ ScriptInterpreter.prototype.checkPubkeyEncoding = function(buf) {
* bitcoind commit: b5d1b1092998bc95313856d535c632ea5a8f9104
*/
ScriptInterpreter.prototype.evaluate = function() {
console.log(this.script.toString());
if (this.script.toBuffer().length > 10000) {
this.errstr = 'SCRIPT_ERR_SCRIPT_SIZE';
return false;

View File

@ -222,7 +222,7 @@ describe('ScriptInterpreter', function() {
testAllFixtures(script_invalid, false);
});
describe.only('bitcoind transaction evaluation fixtures', function() {
describe('bitcoind transaction evaluation fixtures', function() {
var c = 0;
tx_valid.forEach(function(vector) {
if (vector.length === 1) {