aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
diff options
context:
space:
mode:
authorJeffrey Wilcke <obscuren@users.noreply.github.com>2014-02-24 19:53:30 +0800
committerJeffrey Wilcke <obscuren@users.noreply.github.com>2014-02-24 19:53:30 +0800
commitf2234264ed255a8096c2eb29e1b5ddb120c5ca3f (patch)
treeed39bdc795cb2b3ab989217a54b16214d2866da8 /ethutil
parent95a8ebc2495476c5dbe6c35f30629ca11f660b86 (diff)
parent8ecb24f1141013a935b0f7e858ef7273d67de5e5 (diff)
downloadgo-tangerine-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar
go-tangerine-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar.gz
go-tangerine-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar.bz2
go-tangerine-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar.lz
go-tangerine-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar.xz
go-tangerine-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar.zst
go-tangerine-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.zip
Merge pull request #8 from josephyzhou/develop
parse returns byte array instead of string now
Diffstat (limited to 'ethutil')
-rw-r--r--ethutil/parsing_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethutil/parsing_test.go b/ethutil/parsing_test.go
index c40649187..6b59777e6 100644
--- a/ethutil/parsing_test.go
+++ b/ethutil/parsing_test.go
@@ -14,7 +14,7 @@ func TestCompile(t *testing.T) {
}
calc := (48 + 0*256 + 0*int64(math.Pow(256, 2)))
- if Big(instr).Int64() != calc {
+ if BigD(instr).Int64() != calc {
t.Error("Expected", calc, ", got:", instr)
}
}