(d *big.Int)
| 38 | } |
| 39 | |
| 40 | func (st *Stack) push(d *big.Int) { |
| 41 | // NOTE push limit (1024) is checked in baseCheck |
| 42 | //stackItem := new(big.Int).Set(d) |
| 43 | //st.data = append(st.data, stackItem) |
| 44 | st.data = append(st.data, d) |
| 45 | } |
| 46 | func (st *Stack) pushN(ds ...*big.Int) { |
| 47 | st.data = append(st.data, ds...) |
| 48 | } |
no outgoing calls