aboutsummaryrefslogtreecommitdiffstats
path: root/vm/context.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-19 22:07:33 +0800
committerobscuren <geffobscura@gmail.com>2015-03-19 22:07:33 +0800
commit554f20930abba7e55fb0dd2718a00c4bd066c973 (patch)
tree41ba92fa976a28547e4e7e43f7e80a4a4f680685 /vm/context.go
parent8b20c3cc976a149c64ef0ac2cabbe49e93ba739d (diff)
parenta756dbeb7b1027eb91130ecf8d5440dca8e738d8 (diff)
downloaddexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar
dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.gz
dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.bz2
dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.lz
dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.xz
dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.tar.zst
dexon-554f20930abba7e55fb0dd2718a00c4bd066c973.zip
Merge branch 'develop' into rpcfrontier
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 6edde0824..1c2f665a4 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 {