(vm *VM)
| 74 | } |
| 75 | |
| 76 | func opInput(vm *VM) { |
| 77 | t := vm.popTuple() |
| 78 | _, snapshotID := contractSnapshot(t) |
| 79 | |
| 80 | con := new(contract) |
| 81 | err := con.uninspect(t) |
| 82 | if err != nil { |
| 83 | panic(err) |
| 84 | } |
| 85 | vm.chargeCreate(con) |
| 86 | vm.push(con) |
| 87 | |
| 88 | vm.logInput(snapshotID) |
| 89 | } |
| 90 | |
| 91 | func opYield(vm *VM) { |
| 92 | prog := vm.popBytes() |
nothing calls this directly
no test coverage detected