PushdataByte writes instructions to b, pushing byt onto the stack.
(byt byte)
| 104 | // PushdataByte writes instructions to b, |
| 105 | // pushing byt onto the stack. |
| 106 | func (tb *TupleBuilder) PushdataByte(byt byte) *TupleBuilder { |
| 107 | tb.b.PushdataByte(byt) |
| 108 | tb.count++ |
| 109 | return tb |
| 110 | } |
| 111 | |
| 112 | // PushdataInt64 writes instructions to b pushing v |
| 113 | // onto the stack. |
nothing calls this directly
no test coverage detected