From cf45b939a098c9421092226d5c76dbce34eb2dda Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 19 Mar 2015 14:31:14 +0100 Subject: fixed tests --- vm/common.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vm/common.go') diff --git a/vm/common.go b/vm/common.go index 1f07ec8a2..90c3361de 100644 --- a/vm/common.go +++ b/vm/common.go @@ -119,9 +119,9 @@ func toValue(val *big.Int) interface{} { return val } -func getCode(code []byte, start, size uint64) []byte { - x := uint64(math.Min(float64(start), float64(len(code)))) - y := uint64(math.Min(float64(x+size), float64(len(code)))) +func getData(data []byte, start, size uint64) []byte { + x := uint64(math.Min(float64(start), float64(len(data)))) + y := uint64(math.Min(float64(x+size), float64(len(data)))) - return common.RightPadBytes(code[x:y], int(size)) + return common.RightPadBytes(data[x:y], int(size)) } -- cgit v1.2.3