|
|
@ -494,14 +494,14 @@ ScriptInterpreter.prototype.eval = function eval(script, tx, inIndex, hashType, |
|
|
|
break; |
|
|
|
|
|
|
|
case Opcode.map.OP_LSHIFT: |
|
|
|
if (v2.cmp(0) < 0 || v2.cmp(bignum(2048)) > 0) { |
|
|
|
if (v2.cmp(0) < 0 || v2.cmp(2048) > 0) { |
|
|
|
throw new Error("OP_LSHIFT parameter out of bounds"); |
|
|
|
} |
|
|
|
num = v1.shiftLeft(v2); |
|
|
|
break; |
|
|
|
|
|
|
|
case Opcode.map.OP_RSHIFT: |
|
|
|
if (v2.cmp(0) < 0 || v2.cmp(bignum(2048)) > 0) { |
|
|
|
if (v2.cmp(0) < 0 || v2.cmp(2048) > 0) { |
|
|
|
throw new Error("OP_RSHIFT parameter out of bounds"); |
|
|
|
} |
|
|
|
num = v1.shiftRight(v2); |
|
|
|