diff options
Diffstat (limited to 'common/hexutil/json_test.go')
-rw-r--r-- | common/hexutil/json_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hexutil/json_test.go b/common/hexutil/json_test.go index 16f1b9aa7..2d2e2fc0f 100644 --- a/common/hexutil/json_test.go +++ b/common/hexutil/json_test.go @@ -202,7 +202,7 @@ var unmarshalUint64Tests = []unmarshalTest{ {input: `"0"`, wantErr: ErrMissingPrefix}, {input: `"0x"`, wantErr: ErrEmptyNumber}, {input: `"0x01"`, wantErr: ErrLeadingZero}, - {input: `"0xfffffffffffffffff"`, wantErr: ErrUintRange}, + {input: `"0xfffffffffffffffff"`, wantErr: ErrUint64Range}, {input: `"0xx"`, wantErr: ErrSyntax}, {input: `"0x1zz01"`, wantErr: ErrSyntax}, |