aboutsummaryrefslogtreecommitdiffstats
path: root/vm/context.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-19 21:31:41 +0800
committerobscuren <geffobscura@gmail.com>2015-03-19 21:31:41 +0800
commitd4e5747d040f290eb3697ded891619887a8593da (patch)
tree4df57f053b3a4dd7b7dde4fde3d4ddeafd14f98e /vm/context.go
parente13c6739804604849c7e43d27b073e68fba58191 (diff)
parentcf45b939a098c9421092226d5c76dbce34eb2dda (diff)
downloaddexon-d4e5747d040f290eb3697ded891619887a8593da.tar
dexon-d4e5747d040f290eb3697ded891619887a8593da.tar.gz
dexon-d4e5747d040f290eb3697ded891619887a8593da.tar.bz2
dexon-d4e5747d040f290eb3697ded891619887a8593da.tar.lz
dexon-d4e5747d040f290eb3697ded891619887a8593da.tar.xz
dexon-d4e5747d040f290eb3697ded891619887a8593da.tar.zst
dexon-d4e5747d040f290eb3697ded891619887a8593da.zip
Merge branch 'develop' into conversion
Diffstat (limited to 'vm/context.go')
-rw-r--r--vm/context.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/context.go b/vm/context.go
index c846aad89..ea70f2376 100644
--- a/vm/context.go
+++ b/vm/context.go
@@ -65,7 +65,7 @@ func (c *Context) GetRangeValue(x, size uint64) []byte {
}
func (c *Context) GetCode(x, size uint64) []byte {
- return getCode(c.Code, x, size)
+ return getData(c.Code, x, size)
}
func (c *Context) Return(ret []byte) []byte {