Commit 2ea22611 authored by Taylor Gerring's avatar Taylor Gerring

Accept num or hex as index

parent 35ad9feb
......@@ -535,11 +535,11 @@ func (args *BlockNumIndexArgs) UnmarshalJSON(b []byte) (err error) {
return err
}
arg1, ok := obj[1].(string)
if !ok {
return NewInvalidTypeError("index", "not a string")
var arg1 *big.Int
if arg1, err = numString(obj[1]); err != nil {
return err
}
args.Index = common.Big(arg1).Int64()
args.Index = arg1.Int64()
return nil
}
......
......@@ -2264,7 +2264,7 @@ func TestBlockNumIndexArgsBlocknumInvalid(t *testing.T) {
}
func TestBlockNumIndexArgsIndexInvalid(t *testing.T) {
input := `["0x29a", 1]`
input := `["0x29a", true]`
args := new(BlockNumIndexArgs)
str := ExpectInvalidTypeError(json.Unmarshal([]byte(input), &args))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment