MCPcopy Create free account
hub / github.com/ElementsProject/elements / IsSmallInteger

Function IsSmallInteger

src/script/standard.cpp:103–106  ·  view source on GitHub ↗

Test for "small positive integer" script opcodes - OP_1 through OP_16. */

Source from the content-addressed store, hash-verified

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

Callers 1

GetMultisigKeyCountFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected