PushdataBytes writes instructions to b pushing data onto the stack.
(data []byte)
| 96 | // PushdataBytes writes instructions to b |
| 97 | // pushing data onto the stack. |
| 98 | func (tb *TupleBuilder) PushdataBytes(data []byte) *TupleBuilder { |
| 99 | tb.b.PushdataBytes(data) |
| 100 | tb.count++ |
| 101 | return tb |
| 102 | } |
| 103 | |
| 104 | // PushdataByte writes instructions to b, |
| 105 | // pushing byt onto the stack. |
nothing calls this directly
no test coverage detected