PushByteArray adds the given back array to the top of the stack. Stack transformation: [... x1 x2] -> [... x1 x2 data]
(so []byte)
| 49 | // |
| 50 | // Stack transformation: [... x1 x2] -> [... x1 x2 data] |
| 51 | func (s *stack) PushByteArray(so []byte) { |
| 52 | s.stk = append(s.stk, so) |
| 53 | } |
| 54 | |
| 55 | // PushInt converts the provided scriptNum to a suitable byte array then pushes |
| 56 | // it onto the top of the stack. |
no outgoing calls