diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-19 21:31:41 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-19 21:31:41 +0800 |
commit | d4e5747d040f290eb3697ded891619887a8593da (patch) | |
tree | 4df57f053b3a4dd7b7dde4fde3d4ddeafd14f98e /vm/context.go | |
parent | e13c6739804604849c7e43d27b073e68fba58191 (diff) | |
parent | cf45b939a098c9421092226d5c76dbce34eb2dda (diff) | |
download | dexon-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.go | 2 |
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 { |