opcodeNip removes the item before the top item on the data stack. Stack transformation: [... x1 x2 x3] -> [... x1 x3]
(op *opcode, data []byte, vm *Engine)
| 1314 | // |
| 1315 | // Stack transformation: [... x1 x2 x3] -> [... x1 x3] |
| 1316 | func opcodeNip(op *opcode, data []byte, vm *Engine) error { |
| 1317 | return vm.dstack.NipN(1) |
| 1318 | } |
| 1319 | |
| 1320 | // opcodeOver duplicates the item before the top item on the data stack. |
| 1321 | // |
nothing calls this directly
no test coverage detected
searching dependent graphs…