From 59220939e3150ea66939e2b7043fb0b804963511 Mon Sep 17 00:00:00 2001 From: mumianhua <1975054324@qq.com> Date: Mon, 20 Nov 2023 15:40:55 +0800 Subject: [PATCH] just test --- common/math/big.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/math/big.go b/common/math/big.go index 013c0ba4b6..b56117e191 100644 --- a/common/math/big.go +++ b/common/math/big.go @@ -93,7 +93,7 @@ func NewDecimal256(x int64) *Decimal256 { func (i *Decimal256) UnmarshalText(input []byte) error { bigint, ok := ParseBig256(string(input)) if !ok { - return fmt.Errorf("invalid hex or decimal integer %q", input) + return fmt.Errorf("invalid hex or decimal integer %q", input) } *i = Decimal256(*bigint) return nil