aboutsummaryrefslogtreecommitdiffstats
path: root/vm/execution.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-01 04:02:59 +0800
committerobscuren <geffobscura@gmail.com>2014-12-01 04:02:59 +0800
commit616066a598933df7ef126186eb9c647094f665ca (patch)
tree23840481607b40cb2840b60f4d07e12598e6376f /vm/execution.go
parent1bce02eff70db43b98d68fcd094fd2e15745b021 (diff)
downloaddexon-616066a598933df7ef126186eb9c647094f665ca.tar
dexon-616066a598933df7ef126186eb9c647094f665ca.tar.gz
dexon-616066a598933df7ef126186eb9c647094f665ca.tar.bz2
dexon-616066a598933df7ef126186eb9c647094f665ca.tar.lz
dexon-616066a598933df7ef126186eb9c647094f665ca.tar.xz
dexon-616066a598933df7ef126186eb9c647094f665ca.tar.zst
dexon-616066a598933df7ef126186eb9c647094f665ca.zip
rework vm
Diffstat (limited to 'vm/execution.go')
-rw-r--r--vm/execution.go2
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)
}