aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-11-28 20:55:56 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2016-11-28 20:55:56 +0800
commit318ad3c1e424912ff69c9febc4e08a0137f8803f (patch)
treeb390bdd30b6b4eeaff111b758632434d1c1d7b4d /common
parente949a2ed2f1c59ed5ff1f187ad987c882656e6ef (diff)
downloadgo-tangerine-318ad3c1e424912ff69c9febc4e08a0137f8803f.tar
go-tangerine-318ad3c1e424912ff69c9febc4e08a0137f8803f.tar.gz
go-tangerine-318ad3c1e424912ff69c9febc4e08a0137f8803f.tar.bz2
go-tangerine-318ad3c1e424912ff69c9febc4e08a0137f8803f.tar.lz
go-tangerine-318ad3c1e424912ff69c9febc4e08a0137f8803f.tar.xz
go-tangerine-318ad3c1e424912ff69c9febc4e08a0137f8803f.tar.zst
go-tangerine-318ad3c1e424912ff69c9febc4e08a0137f8803f.zip
common/hexutil: fix Test{Decode,Unmarshal}Uint64 on 32bit arch (#3363)
Diffstat (limited to 'common')
-rw-r--r--common/hexutil/hexutil_test.go2
-rw-r--r--common/hexutil/json_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/hexutil/hexutil_test.go b/common/hexutil/hexutil_test.go
index 3f261c9a7..b58b4745c 100644
--- a/common/hexutil/hexutil_test.go
+++ b/common/hexutil/hexutil_test.go
@@ -105,7 +105,7 @@ var (
{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},
// valid
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},