(n int64, deferred bool)
| 159 | } |
| 160 | |
| 161 | func (vm *virtualMachine) pushInt64(n int64, deferred bool) error { |
| 162 | return vm.push(Int64Bytes(n), deferred) |
| 163 | } |
| 164 | |
| 165 | func (vm *virtualMachine) pop(deferred bool) ([]byte, error) { |
| 166 | if len(vm.dataStack) == 0 { |