PushdataInt64 writes instructions to b pushing v onto the stack.
(v int64)
| 112 | // PushdataInt64 writes instructions to b pushing v |
| 113 | // onto the stack. |
| 114 | func (tb *TupleBuilder) PushdataInt64(v int64) *TupleBuilder { |
| 115 | tb.b.PushdataInt64(v) |
| 116 | tb.count++ |
| 117 | return tb |
| 118 | } |
| 119 | |
| 120 | // Tuple executes fn, passing in a TupleBuilder that exposes |
| 121 | // pushdata operations. All operations performed on the |
nothing calls this directly
no test coverage detected