rpc: to in Call no longer required. Fixed eth_estimateGas

This commit is contained in:
Jeffrey Wilcke
2015-07-27 13:44:37 +02:00
parent fa286688ab
commit d261c3f455
3 changed files with 4 additions and 8 deletions

View File

@ -935,9 +935,9 @@ func TestCallArgsNotStrings(t *testing.T) {
func TestCallArgsToEmpty(t *testing.T) {
input := `[{"from": "0xb60e8dd61c5d32be8058bb8eb970870f07233155"}]`
args := new(CallArgs)
str := ExpectValidationError(json.Unmarshal([]byte(input), &args))
if len(str) > 0 {
t.Error(str)
err := json.Unmarshal([]byte(input), &args)
if err != nil {
t.Error("Did not expect error. Got", err)
}
}