mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
just test
This commit is contained in:
parent
77cb21da2c
commit
59220939e3
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue