(vm *VM)
| 107 | } |
| 108 | |
| 109 | func opContractProgram(vm *VM) { |
| 110 | vm.chargeCopy(Bytes(vm.contract.program)) |
| 111 | vm.push(Bytes(vm.contract.program)) |
| 112 | } |
| 113 | |
| 114 | func opSelf(vm *VM) { |
| 115 | vm.chargeCopy(Bytes(vm.contract.seed)) |
nothing calls this directly
no test coverage detected