aboutsummaryrefslogtreecommitdiffstats
path: root/common/big_test.go
diff options
context:
space:
mode:
authorjohnliu-dexon <42129254+johnliu-dexon@users.noreply.github.com>2019-01-17 16:37:15 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:56 +0800
commit20d2c46820b895632f7abda71e57164264582b26 (patch)
tree227516c2722fb4a5ee8517f2f9edc30c76a55069 /common/big_test.go
parent1dc1093dc48231aca0c1794a5a35c8595a1704c9 (diff)
downloaddexon-20d2c46820b895632f7abda71e57164264582b26.tar
dexon-20d2c46820b895632f7abda71e57164264582b26.tar.gz
dexon-20d2c46820b895632f7abda71e57164264582b26.tar.bz2
dexon-20d2c46820b895632f7abda71e57164264582b26.tar.lz
dexon-20d2c46820b895632f7abda71e57164264582b26.tar.xz
dexon-20d2c46820b895632f7abda71e57164264582b26.tar.zst
dexon-20d2c46820b895632f7abda71e57164264582b26.zip
common: fix big scan from bytes (#157)
We store string of number, not bytes value into database 10 is stored as 0x3130, not 0x0a Use UnmarshalText instead of SetBytes
Diffstat (limited to 'common/big_test.go')
-rw-r--r--common/big_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/big_test.go b/common/big_test.go
index 0339b4760..5ce9091ec 100644
--- a/common/big_test.go
+++ b/common/big_test.go
@@ -31,7 +31,7 @@ func TestBig_Scan(t *testing.T) {
},
{
name: "scan bytes",
- args: args{src: []byte{0x0a}},
+ args: args{src: []byte{0x31, 0x30}},
value: Big(*big.NewInt(10)),
wantErr: false,
},