PushdataBytes writes instructions to b, pushing data onto the stack.
(data []byte)
| 29 | // PushdataBytes writes instructions to b, |
| 30 | // pushing data onto the stack. |
| 31 | func (b *Builder) PushdataBytes(data []byte) *Builder { |
| 32 | writePushdata(&b.buf, data) |
| 33 | return b |
| 34 | } |
| 35 | |
| 36 | // PushdataByte writes instructions to b, |
| 37 | // pushing byt onto the stack. |
no test coverage detected