(pc *uint64, evm *EVM, contract *Contract, memory *Memory, stack *Stack)
| 38 | ) |
| 39 | |
| 40 | func opAdd(pc *uint64, evm *EVM, contract *Contract, memory *Memory, stack *Stack) ([]byte, error) { |
| 41 | x, y := stack.pop(), stack.peek() |
| 42 | math.U256(y.Add(x, y)) |
| 43 | |
| 44 | evm.interpreter.intPool.put(x) |
| 45 | return nil, nil |
| 46 | } |
| 47 | |
| 48 | func opSub(pc *uint64, evm *EVM, contract *Contract, memory *Memory, stack *Stack) ([]byte, error) { |
| 49 | x, y := stack.pop(), stack.peek() |