parse now returns byte[] instead of string

poc8
Joey Zhou 11 years ago
parent 3a45cdeaf9
commit 8ecb24f114
  1. 2
      ethutil/parsing_test.go

@ -13,7 +13,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