Skip to content

Commit

Permalink
Merge pull request #8 from josephyzhou/develop
Browse files Browse the repository at this point in the history
parse returns byte array instead of string now
  • Loading branch information
obscuren committed Feb 24, 2014
2 parents 95a8ebc + 8ecb24f commit f223426
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethutil/parsing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down

0 comments on commit f223426

Please sign in to comment.