opcode2Drop removes the top 2 items from the data stack. Stack transformation: [... x1 x2 x3] -> [... x1]
(op *opcode, data []byte, vm *Engine)
| 1228 | // |
| 1229 | // Stack transformation: [... x1 x2 x3] -> [... x1] |
| 1230 | func opcode2Drop(op *opcode, data []byte, vm *Engine) error { |
| 1231 | return vm.dstack.DropN(2) |
| 1232 | } |
| 1233 | |
| 1234 | // opcode2Dup duplicates the top 2 items on the data stack. |
| 1235 | // |
nothing calls this directly
no test coverage detected
searching dependent graphs…