script: lint.

This commit is contained in:
Christopher Jeffrey 2017-08-10 23:37:42 -07:00
parent 5c7c66332f
commit 6c96a8e6ba
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -2888,7 +2888,8 @@ Script.verifyProgram = function verifyProgram(witness, output, flags, tx, index,
throw new ScriptError('WITNESS_PROGRAM_WRONG_LENGTH'); throw new ScriptError('WITNESS_PROGRAM_WRONG_LENGTH');
} }
} else if ((flags & Script.flags.VERIFY_MAST) && program.version === 1) { } else if ((flags & Script.flags.VERIFY_MAST) && program.version === 1) {
return Script.verifyMast(program, stack, output, flags, tx, index); Script.verifyMast(program, stack, output, flags, tx, index);
return;
} else { } else {
// Anyone can spend (we can return true here // Anyone can spend (we can return true here
// if we want to always relay these transactions). // if we want to always relay these transactions).
@ -2899,7 +2900,7 @@ Script.verifyProgram = function verifyProgram(witness, output, flags, tx, index,
// due to VERIFY_CLEANSTACK. // due to VERIFY_CLEANSTACK.
if (flags & Script.flags.VERIFY_DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM) if (flags & Script.flags.VERIFY_DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM)
throw new ScriptError('DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM'); throw new ScriptError('DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM');
return true; return;
} }
// Witnesses still have push limits. // Witnesses still have push limits.