IsPushdataOp tells whether the given opcode is a pushdata instruction.
(o byte)
| 139 | // IsPushdataOp tells whether the given opcode is a pushdata |
| 140 | // instruction. |
| 141 | func IsPushdataOp(o byte) bool { |
| 142 | return o >= MinPushdata |
| 143 | } |
| 144 | |
| 145 | // DecodeInst decodes the first instruction in the given program. |
| 146 | // |
no outgoing calls
no test coverage detected