Test for "small positive integer" script opcodes - OP_1 through OP_16. */
| 101 | |
| 102 | /** Test for "small positive integer" script opcodes - OP_1 through OP_16. */ |
| 103 | static constexpr bool IsSmallInteger(opcodetype opcode) |
| 104 | { |
| 105 | return opcode >= OP_1 && opcode <= OP_16; |
| 106 | } |
| 107 | |
| 108 | static constexpr bool IsPushdataOp(opcodetype opcode) |
| 109 | { |
no outgoing calls
no test coverage detected