Merge pull request #8 from josephyzhou/develop

parse returns byte array instead of string now
pull/150/head
Jeffrey Wilcke 11 years ago
commit f2234264ed
  1. 2
      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)
}
}

Loading…
Cancel
Save