diff options
author | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-02-24 19:53:30 +0800 |
---|---|---|
committer | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-02-24 19:53:30 +0800 |
commit | f2234264ed255a8096c2eb29e1b5ddb120c5ca3f (patch) | |
tree | ed39bdc795cb2b3ab989217a54b16214d2866da8 | |
parent | 95a8ebc2495476c5dbe6c35f30629ca11f660b86 (diff) | |
parent | 8ecb24f1141013a935b0f7e858ef7273d67de5e5 (diff) | |
download | dexon-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar dexon-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar.gz dexon-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar.bz2 dexon-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar.lz dexon-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar.xz dexon-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.tar.zst dexon-f2234264ed255a8096c2eb29e1b5ddb120c5ca3f.zip |
Merge pull request #8 from josephyzhou/develop
parse returns byte array instead of string now
-rw-r--r-- | ethutil/parsing_test.go | 2 |
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) } } |