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