(vm *VM)
| 109 | } |
| 110 | |
| 111 | func opRetire(vm *VM) { |
| 112 | val := vm.popValue() |
| 113 | vm.logRetirement(val.amount, val.assetID, val.anchor) |
| 114 | } |
| 115 | |
| 116 | func (vm *VM) popValue() *value { |
| 117 | item := vm.pop() |
nothing calls this directly
no test coverage detected