diff options
Diffstat (limited to 'vm/execution.go')
-rw-r--r-- | vm/execution.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/execution.go b/vm/execution.go index c23164f82..514405215 100644 --- a/vm/execution.go +++ b/vm/execution.go @@ -90,6 +90,6 @@ func (self *Execution) exec(code, caddr []byte, caller ClosureRef) (ret []byte, return } -func (self *Execution) Create(caller ClosureRef) (ret []byte, err error) { +func (self *Execution) Create(caller []byte) (ret []byte, err error) { return self.exec(self.input, nil, caller) } |