Test for "small positive integer" script opcodes - OP_1 through OP_16. */
| 58 | |
| 59 | /** Test for "small positive integer" script opcodes - OP_1 through OP_16. */ |
| 60 | static constexpr bool IsSmallInteger(opcodetype opcode) |
| 61 | { |
| 62 | return opcode >= OP_1 && opcode <= OP_16; |
| 63 | } |
| 64 | |
| 65 | static bool MatchMultisig(const CScriptView& script, ScriptOutputData<blocksci::AddressType::Enum::MULTISIG> &multisig) |
| 66 | { |